Queue
A queue is a linear data structure that follows the First In, First Out (FIFO) principle, where elements are added at one end (rear) and removed from the other (front).
It is often used for tasks like scheduling or managing asynchronous processes.
Common operations include enqueue
(add) and dequeue
(remove).
Operations
Not yet documented.