CircularQueue
Container of elements in which operations are performed based on FIFO principle and the last position is connected back to the first position to make a circle.
new CircularQueue()
/**
* Creates an instance of CircularQueue.
*
* @param elements List of elements to create the new queue with.
*/
constructor(elements: T[] = [])length
length: numberNumber of elements in the queue. This field is read only.
Examples:
import { CircularQueue } from 'ads-js/queues';
const queue = new CircularQueue();
queue.length === 0; // true
queue.enqueue(1);
queue.length === 1; // trueclear()
dequeue()
enqueue()
getFirst()
isEmpty()
Running time O(1)
Checks whether the queue is empty or not.
Returns:
TRUE if the queue is empty, FALSE otherwise.
Examples:
rotate()
Last updated
Was this helpful?