牛客583936202号
牛客583936202号
全部文章
分类
题解(2)
归档
标签
去牛客网
登录
/
注册
EliotYang的博客
全部文章
(共2篇)
题解 | #由两个栈组成的队列#
#include<bits/stdc++.h> using namespace std; class MyQueue{ public: stack<int>s1; stack<int>s2; MyQueue(){} void...
C++
栈
2021-10-21
0
451
题解 | #设计getMin功能的栈#
#include <bits/stdc++.h> using namespace std; class MyStack{ public: stack<int> ordinary_stack; stack<int> min_s...
C++
栈
2021-10-21
1
409