CJ-Dong
CJ-Dong
全部文章
分类
题解(21)
归档
标签
去牛客网
登录
/
注册
CJ-Dong的博客
全部文章
(共21篇)
替换空格 纯c
class Solution { public: void replaceSpace(char* str, int length) { char* str_new = str; int num = 0; for (int i = 0; i < length; i...
2020-08-23
0
521
坐标移动
#include <iostream> #include <vector> #include <string> using namespace std; bool isValie(string str) { if(str[0] == 'A' || str...
2020-08-20
2
632
数据分类处理
#include <iostream> #include <vector> #include <set> using namespace std; // 判断 i 是否包含 r bool check(int i, int r) { int digit =...
2020-08-10
3
824
简单密码
#include <iostream> #include <vector> #include <string> using namespace std; string helpStr1 = "abcdefghijklmnopqrstuvwxyzABCDEFGHI...
2020-08-09
8
848
字符串加解密
/*****************************方法一*******************************/ #include <iostream> #include <vector> #include <string> using name...
2020-08-09
9
981
字串的连接最长路径查找
#include <iostream> #include <vector> #include <string> #include <algorithm> using namespace std; int main() { int n; ...
2020-08-07
0
581
句子逆序
#include <iostream> #include <vector> #include <string> using namespace std; int main() { string str; getline(cin, str); ...
2020-08-07
0
487
字符个数统计
#include <iostream> #include <vector> #include <string> #include <algorithm> #include <set> using namespace std; int ma...
2020-08-07
0
521
提取不重复的整数
#include <iostream> #include <vector> #include <string> #include <map> using namespace std; int main() { int n; cin &g...
2020-08-07
1
536
字符串分割
#include <iostream> #include <vector> #include <string> using namespace std; int main() { string str; vector<vector<c...
2020-08-06
1
462
首页
上一页
1
2
3
下一页
末页