Re: [闲聊] 每日LeetCode

楼主: wu10200512 (廷廷)   2024-01-29 15:02:22
写完后发现去年5月写过了
那时候应该是抄某个答案的
结果我一年后再写一遍 一模一样
答案直接背起来 笑死
class MyQueue {
public:
stack<int> in;
stack<int> out;
MyQueue() {
}
void push(int x) {
in.push(x);
}
int pop() {
if(out.empty()){
while(!in.empty()){
out.push(in.top());
in.pop();
}
}
int top = out.top();
out.pop();
return top;
}
int peek() {
if(out.empty()){
while(!in.empty()){
out.push(in.top());
in.pop();
}
}
int top = out.top();
return top;
}
bool empty() {
return in.empty() && out.empty();
}
};
作者: oin1104 (是oin的说)   2024-01-29 15:03:00
你好棒
作者: DaibaNana (BANANA)   2024-01-29 15:03:00
你好厉害
作者: JIWP (JIWP)   2024-01-29 15:03:00
大师
作者: DJYOSHITAKA (Evans)   2024-01-29 15:27:00
大湿...
作者: pandix (面包屌)   2024-01-29 16:47:00
不是背起来 是你变强了

Links booklink

Contact Us: admin [ a t ] ucptt.com