2021中国年度划水大师
2021中国年度划水大师
全部文章
分类
C/C++基础(11)
Linux(18)
实践教程(2)
操作系统(4)
计算机网络(8)
归档
标签
去牛客网
登录
/
注册
只会写八阿哥
划水大师
全部文章
(共83篇)
题解 | #单词倒排#
#include <iostream> #include <string> #include <vector> using namespace std; int main(int argc, char* argv[]){ string str; ...
2024-03-01
0
203
题解 | #字符串合并处理#
#include <iostream> #include <string> #include <set> using namespace std; int bitReverse(int num){ if(num == 0){ return...
2024-03-01
0
210
题解 | #字符串加解密#
#include <iostream> #include <string> using namespace std; void encrypting(string& unencrypted){ for(int i = 0; i < unencrypte...
2024-03-01
0
212
题解 | #素数伴侣#
#include <iostream> #include <vector> using namespace std; bool isPrimeNumber(int num){ for(int i = 2; i * i <= num; ++i){ ...
2024-03-01
0
176
题解 | #查找兄弟单词#
#include <iostream> #include <string> #include <vector> #include <set> #include <unordered_map> using namespace std; bo...
2024-02-29
0
202
题解 | #字符串排序#
#include <iostream> #include <string> #include <map> using namespace std; int main(int argc, char* argv[]){ string str; get...
2024-02-29
0
174
题解 | #数据分类处理#
#include <iostream> #include <string> #include <vector> #include <set> using namespace std; bool isIncluded(const int& y,...
2024-02-29
0
179
题解 | #合唱队#
#include <climits> #include <iostream> #include <vector> using namespace std; int main(int argc, char* argv[]){ int N; cin ...
2024-02-29
0
220
题解 | #删除字符串中出现次数最少的字符#
#include <algorithm> #include <climits> #include <iostream> #include <string> #include <unordered_map> using namespace s...
2024-02-29
0
183
题解 | #汽水瓶#
#include <iostream> using namespace std; int main(int argc, char* argv[]){ int n; while(cin >> n){ if(n == 0){ ...
2024-02-29
0
176
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页