sunny_forever
sunny_forever
全部文章
分类
题解(57)
归档
标签
去牛客网
登录
/
注册
梨小畅的空间
全部文章
(共2篇)
题解 | #小C的记事本#
Code #include <bits/stdc++.h> using namespace std; const int N = 1e6+10; string stk[N]; int hh; int main(){ int q; while(cin>>...
模拟栈
2021-08-05
2
590
题解 | #吐泡泡#
思路 法1:手写栈 Code #include <bits/stdc++.h> using namespace std; const int N = 110; char stk[N]; string s; int hh; bool check(int h,int i){ ...
stack
模拟栈
2021-08-03
1
548