阿尔芒a
阿尔芒a
全部文章
分类
归档
标签
去牛客网
登录
/
注册
阿尔芒a的博客
全部文章
(共39篇)
题解 | #复数集合#
#include<iostream> #include<queue> #include<string> #include<cmath> using namespace std; struct complex { int shi; int fu;...
2024-03-13
0
201
题解 | #二叉树遍历#
#include <iostream> #include <string> using namespace std; struct Node { char c; Node* left = NULL; Node* right = NULL; }; ...
2024-03-12
0
169
题解 | #二叉树#
#include <iostream> #include <string> #include <queue> using namespace std; int DFS(int index, int end) { if (index > end) {...
2024-03-10
0
164
题解 | #全排列#
#include <iostream> #include <vector> #include <unordered_map> using namespace std; vector<string> resultStr_list; bool hash_...
2024-03-09
0
221
题解 | #计算表达式#
#include <iostream> #include <string> #include <stack> #include <map> using namespace std; int priority(string c) { if (c ...
2024-03-07
0
201
题解 | #成绩排序#
// #include<bits/stdc++.h> #include <cstdio> #include <ios> #include<iostream> #include<vector> #include<algorithm&g...
2024-03-07
0
193
题解 | #首字母大写#
#include<bits/stdc++.h> #include<string> using namespace std; int main() { string input_str; while (getline(cin, input_str)) { ...
2024-03-06
0
175
题解 | #单词替换#
#include<iostream> #include<string> #include<vector> using namespace std; int main() { string sentence, target_str, replace_str...
2024-03-06
0
219
题解 | #浮点数加法#
// #include<bits/stdc++.h> //看了下评论区,感觉大家写的真的很麻烦 #include <iostream> #include <algorithm> #include <string> using namespace std...
2024-03-05
4
275
首页
上一页
1
2
3
4
下一页
末页