https://leetcode.com/problems/implement-queue-using-stacks/
class Queue {
public:
stack<int> s1;
stack<int> s2;
// 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()){
adjust();
}
int val = s2.top();
s2.pop();
}
// Get the front element.
int peek(void) {
if (s2.empty()) {
adjust();
}
return s2.top();
}
// Return whether the queue is empty.
bool empty(void) {
return s1.empty() && s2.empty();
}
void adjust() {
if (s1.empty()) {
return;
}
while (!s1.empty()) {
s2.push(s1.top());
s1.pop();
}
}
};
网友评论