佛系的青年
佛系的青年
全部文章
分类
归档
标签
去牛客网
登录
/
注册
佛系的青年的博客
全部文章
(共89篇)
题解 | 图片整理
#include <iostream> #include <algorithm> using namespace std; int main() { string str; cin >> str; sort(str.begin(), st...
2025-02-22
0
58
题解 | 整数与IP地址间的转换
#include <iostream> #include <bitset> #include <vector> #include <sstream> using namespace std; int main() { string ip_st...
2025-02-22
0
56
题解 | 密码截取
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { string str; getline(cin, str);...
2025-02-22
0
48
题解 | 单词倒排
#include <iostream> #include <vector> #include <cctype> #include <algorithm> using namespace std; int main() { string str...
2025-02-22
0
58
题解 | 字符串合并处理
#include <iostream> #include <string> #include <bitset> #include <algorithm> #include <cctype> #include <vector> ...
2025-02-22
0
63
题解 | 字符串加解密
#include <iostream> #include <cctype> using namespace std; char alpha_trans(char c, bool decode) { char ans; if(isupper(c)) { ...
2025-02-21
0
54
题解 | 查找兄弟单词
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { int n, k; cin >> n; ...
2025-02-21
0
54
题解 | 字符串排序
#include <iostream> #include <cctype> #include <algorithm> using namespace std; int main() { string str, str1; getline(cin,...
2025-02-21
0
67
题解 | 简单密码
#include <iostream> #include <string> #include <cctype> using namespace std; int lower_to_digit(const char& c) { int n = c ...
2025-02-20
0
73
题解 | 密码验证合格程序
#include <iostream> #include <string> #include <vector> #include <unordered_map> #include <cctype> using namespace std; ...
2025-02-20
0
68
首页
上一页
1
2
3
4
5
6
7
8
9
下一页
末页