c&c++
Kyle°
22考研上岸,偷得半日闲,不断更新计算机专业笔记、各种学习笔记。。。
展开
-
C++中find系列函数
总述: 以下所讲的所有的string查找函数,都有唯一的返回类型,那就是size_type,即一个无符号整数(按打印出来的算)。若查找成功,返回按查找规则找到的第一个字符或子串的位置;若查找失败,返回npos,即-1(打印出来为4294967295)。 find() 原型: //string (1) size_type find (const basic_string& str, si...原创 2019-08-15 17:58:29 · 1921 阅读 · 0 评论 -
排序函数sort()等的用法
sort类函数 sort在 algroithm中; 使用语法:sort(begin,end,cmp),cmp是可有可无的参数,如果没有默认非降序排序。 例: #include<iostream> #include<algorithm> #include<cstring> using namespace std; int main() { int a[5]...转载 2019-08-15 14:20:31 · 1264 阅读 · 0 评论