Skip to content

Latest commit

 

History

History
 
 

2017-01-30-queue-with-stacks

Implement Queue using Stacks

We are given a stack data structure with push and pop operations. The task is to implement a queue using instances of the stack data structure and operations on them.

Stack - LIFO (Last in First Out) Queue - FIFO (First in First Out)