We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
- Queue using Two Stacks
- Discussions
Queue using Two Stacks
Queue using Two Stacks
Sort by
recency
|
56 Discussions
|
Please Login in order to post a comment
There's a typo in the sample input.
1 14 enqueue 42
This line should read
1 14 enqueue 14
here is hackerrank queue using two stacks problem solution in Python, Java, C++, C and javascript
Skipped this one as I didn't want to write all the reading code. Regardles the idea for the implementation
time complexity: enqueue is constant O(1) dequeue is also constant O(2) -- while taking any single element from the queue is linear in worst case (when outStack is empty), amortised complexity (taking N elementes) will result in 2 operations per element (one to move the element from inStack to outStack and one to take it from the outStack).
de