get queue length Runtime: O(1)
return number of element in the queue
check whether if queue length is empty Runtime: O(1)
return true if queue is empty, false otherwise
remove element from the stack Runtime: O(1)
add element to the stack Runtime: O(1)
Generated using TypeDoc
class Stack