576 views
0 votes
0 votes
I am unable to understand the implementation of stack using queue , I understood queue implementation using stack but not this one , I searched for a video lecture too but found for implementation of queue only , so plz help in making me this understand .

1 Answer

Related questions

2 votes
2 votes
2 answers
3
4 votes
4 votes
1 answer
4
Hemant Parihar asked Jan 20, 2018
1,539 views
In implementation of queue using stack, deletion of second element from front take Ο(1) time, when insertion take Ο(n) time.Which of the following is correct ?True / Fa...