Queues
A queue is a fundamental data structure in programming that follows the First In, First Out (FIFO) principle, meaning that the first element added to the queue is the first one to be removed. It supports two primary operations: enqueue, which adds an element to the back of the queue, and dequeue, which removes the front element from the queue. Queues are commonly used in programming for tasks such as job scheduling, process management, and implementing breadth-first search algorithms.