讲义气的勇士愿offer多多
讲义气的勇士愿offer多多
全部文章
分类
归档
标签
去牛客网
登录
/
注册
讲义气的勇士愿offer多多的博客
TA的专栏
4篇文章
0人订阅
字符串操作
4篇文章
77人学习
全部文章
(共110篇)
题解 | #查找兄弟单词#
#include <algorithm> #include <iostream> #include <set> #include <vector> using namespace std; // 通过排序算法判断是否是兄弟单词。 bool isBro...
2024-09-26
0
57
题解 | #查找兄弟单词#
#include <algorithm> #include <iostream> #include <set> #include <vector> using namespace std; // 通过排序算法判断是否是兄弟单词。 bool isBro...
2024-09-26
0
46
题解 | #字符串排序#
#include<iostream> #include <vector> using namespace std; string handle_str(string & str){ string ans = str; vector<char&...
2024-09-26
0
49
题解 | #数据分类处理#
#include<iostream> #include <set> #include <vector> using namespace std; int main() { int ICnt, RCnt; string str; cin &...
2024-09-26
0
60
题解 | #删除字符串中出现次数最少的字符#
#include <iostream> using namespace std; int main() { string str; string ans; int min = 20; cin >> str; int len = str...
2024-09-26
0
57
题解 | #删除字符串中出现次数最少的字符#
#include <iostream> using namespace std; int main() { string str; string ans; int min = 20; cin >> str; int len = str...
2024-09-26
0
50
题解 | #简单密码#
#include <iostream> #include <map> using namespace std; int main() { //利用 map 表来解析代码 map<char, char> ctoint; ctoint['a'] =...
2024-09-25
0
83
题解 | #密码验证合格程序#
#include<iostream> #include <set> using namespace std; // 判断密码的长度 bool check1(string &password){ bool bisValid = true; if(pas...
2024-09-25
0
69
题解 | #简单错误记录#
#include <deque> #include<iostream> #include <map> using namespace std; int main(){ string str; map<string, int> myma...
2024-09-25
0
75
题解 | #求int型正整数在内存中存储时1的个数#
#include <iostream> using namespace std; int main() { int input; cin >> input; size_t res = 0; size_t bitmask = 1; //...
2024-09-25
0
84
首页
上一页
2
3
4
5
6
7
8
9
10
11
下一页
末页