在考古的小鱼干很有气魄
在考古的小鱼干很有气魄
全部文章
分类
归档
标签
去牛客网
登录
/
注册
在考古的小鱼干很有气魄的博客
全部文章
(共84篇)
题解 | #二叉排序树#
#include <bits/stdc++.h> #define MAX 100 using namespace std; typedef struct BiTNode { int data; struct BiTNode* lchild, *rchild; } BiT...
2023-03-05
1
355
题解 | #统计单词#
#include <bits/stdc++.h> using namespace std; int main(){ vector<string> data; string s,sub; bool flag = true; while(flag){ cin>...
2023-03-05
1
309
题解 | #矩阵转置#
#include <bits/stdc++.h> #define MAX 50 using namespace std; int main(){ int n,data[MAX][MAX]; cin>>n; for(int i = 0; i < n; i++) ...
2023-03-05
0
302
题解 | #A+B#
#include <bits/stdc++.h> using namespace std; int main(){ string s1,s2; cin>>s1>>s2; int len1 = s1.size(),len2 = s2.size(); int...
2023-03-05
1
274
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页