zcohlaz
zcohlaz
全部文章
题解
归档
标签
去牛客网
登录
/
注册
zcohlaz的博客
全部文章
/ 题解
(共4篇)
题解 | #最大连续子序列#
与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
315