You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Implement a stack data structure with push and pop operations and then implement a queue using two instances of stack data structure and operations on them.
About
This repository contains an implementation of a queue that is based on 2 stacks.