zcohlaz
zcohlaz
全部文章
分类
题解(4)
归档
标签
去牛客网
登录
/
注册
zcohlaz的博客
全部文章
(共5篇)
题解 | #字符串合并处理#C++使用Map容器来转换字符
#include <string> #include <iostream> #include <algorithm> #include <cctype> #include <map> using namespace std; int ma...
2023-01-08
0
310
题解 | #最大连续子序列#
与KY22 最大序列和的思想类似,只不过在比较时加上记录首尾元素位置 ```#include <iostream> #include <string> #include <algorithm> using namespace std; const int max...
C++
2022-03-25
0
364
题解 | #a+b#采用进制转换中的思想解决
">#include <cmath> using namespace std; #include <vector> string myadd(string str1, string str2) { int d1 = str1.size(); int d2 = str2...
C++
2022-03-13
3
387
题解 | #后缀子串排序#
不采用STL库,自定义排序的思路。(有些学校上机测试需要自定义函数) #include <string> using namespace std; void ssort(string str[],int n){ int i,j; string temp; fo...
C++
2022-03-10
0
290
题解 | #首字母大写#
先判断第一个字符是否为小写,再遍历后面的字符即可 using namespace std; #include <string> /*空格(' ')、制表符('\t')、回车符('\r')、换行符('\n')。*/ int main() { string str; ...
C++
2022-03-10
0
314