Little-Soul
Little-Soul
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Little-Soul的博客
全部文章
/ 题解
(共1篇)
题解 | #【模板】栈#
#include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; stack<int> L; while(n--) { strin...
C++
2022-03-19
6
932