SStarry
SStarry
全部文章
分类
归档
标签
去牛客网
登录
/
注册
SStarry的博客
全部文章
(共25篇)
题解 | #寻找大富翁# 快排模板
#include <iostream> using namespace std; const int N = 100010; int m, n; int a[N]; void quick_sort(int q[], int l, int r) { if(l >= r)...
2023-08-15
0
300
题解 | #Problem D# (二叉树的建树与遍历)
#include <iostream> #include <cstring> using namespace std; string s1, s2; struct Tree{ char data; Tree* left; Tree* right; ...
C++
二叉树
2023-08-14
1
517
题解 | #最大序列和#
#include <iostream> using namespace std; const int N = 1000010; int n; int a[N], f[N]; int main() { while(cin >> n)  ...
2023-08-08
1
216
题解 | #String Matching#
#include <iostream> #include <cstring> using namespace std; string a,b; int main() { cin >> a >> b; int j, t, count ...
2023-08-04
0
292
题解 | #Powerful Calculator#
#include <iostream> #include <vector> using namespace std; vector<int> a,b,add_c, sub_c, mul_c; vector<int> add(vector<in...
2023-07-25
0
237
首页
上一页
1
2
3
下一页
末页