Antrn
Antrn
全部文章
题解
归档
标签
去牛客网
登录
/
注册
Antrn的博客
全部文章
/ 题解
(共15篇)
C++最简单没有之一了吧
#include<iostream> using namespace std; int main(){ string str; while(cin >> str){ } cout << str.size(); return ...
2020-12-28
15
2972
c++很简单
#include<iostream> #include<vector> #include<string> #include<algorithm> using namespace std; int main(){ int N, headV; ...
2020-12-27
16
1285
C++
#include<iostream> #include<string> using namespace std; int main(){ string str; while(cin >> str){ string res; ...
2020-12-25
0
442
C++简单版
#include<iostream> #include<vector> #include<string> using namespace std; string encodeStr(string str){ string res; for(au...
2020-12-25
0
575
容易理解的C++
#include<iostream> #include<vector> #include<unordered_map> #include<string> #include<queue> #include<utility> usi...
2020-12-23
0
514
C++ 简单方法
#include<iostream> #include<cstring> #include<vector> using namespace std; int main (){ string str; while(cin >> str)...
2020-12-20
1
665
C++
#include<iostream> #include<string> #include<algorithm> using namespace std; int main(){ string str; while(cin >> st...
2020-12-18
4
903
C++版本(简单)
#include<iostream> #include<string> #include<vector> #include <sstream> #include<vector> #include<algorithm> #incl...
2020-12-14
12
1180
BFS+回溯
看代码就行啦,很好理解~ #include<iostream> #include<vector> using namespace std; vector<int> drow = {1,0,0,-1}; vector<int> dcol = {0,1,...
BFS
2020-12-11
0
548
倒置字符串
直接使用一个栈将字符串分割为字符串数组,依次入栈,最后出栈。方法比较笨,仅供参考。 #include<stack> #include<iostream> #include<cstring> #include<vector>> using name...
2020-11-01
1
842
首页
上一页
1
2
下一页
末页