data-structures-and-algorithms

data-structures-and-algorithms

View on GitHub

stacks_and_queues

solution


queue____

All these operations are performed in constant time, O(1). _ **stack**____

All these operations are performed in constant time, O(1), by pushing and popping values from the head of the linked list.


Testing


Whiteboard Process