Get queue length. Runtime: O(1)
return number of element in the queue
Remove element from the queue. Runtime: O(1)
Add element to the queue. Runtime: O(1)
check whether if queue length is empty Runtime: O(1)
return true if queue is empty, false otherwise
Generated using TypeDoc
class Queue