c7rious
c7rious
全部文章
分类
题解(21)
归档
标签
去牛客网
登录
/
注册
c7rious的博客
全部文章
(共1篇)
用两个栈实现队列,c++
class Solution { public: void push(int node) { stack1.push(node); } int pop() { // out栈清空 while (!stack2.empty())...
剑指offer
c++
题解
两个栈实现队列
2019-11-06
0
560