普通人阿苏
普通人阿苏
全部文章
题解
归档
标签
去牛客网
登录
/
注册
普通人阿苏的博客
全部文章
/ 题解
(共2篇)
c++ 实现split分割字符串
从这里拿来一个比较好用的split函数。 #include <iostream> #include <vector> #include <string> #include <algorithm> using namespace std; /* ...
2020-04-22
3
827
字符串输入输出以及stl排序
注意两点: sort支持为字符串数组进行排序; 利用printf输出字符串要使用%s以及要通过c_str()将string转换为c风格字符串 #include <iostream> #include <algorithm> #include <string> ...
2020-04-22
1
868