Implement the following operations of a queue using stacks.
push
to top
, peek/pop from top
, size
,
and is empty
operations are valid.class Queue { public: // Push element x to the back of queue. void push(int x) { s1.push(x); } // Removes the element from in front of queue. void pop(void) { if(s2.empty()) { while(!s1.empty()) { s2.push(s1.top()); s1.pop(); } } s2.pop(); } // Get the front element. int peek(void) { if(s2.empty()) { while(!s1.empty()) { s2.push(s1.top()); s1.pop(); } } return s2.top(); } // Return whether the queue is empty. bool empty(void) { return s1.empty()&&s2.empty(); } private : stack<int> s1; stack<int> s2; };
版权声明:本文为博主原创文章,未经博主允许不得转载。
[leetcode 234]Implement Queue using Stacks
原文:http://blog.csdn.net/er_plough/article/details/47361699