acm
时间:2021-09-17 15:53:58
收藏:0
阅读:31
2.排序:sort
3.除重排序:set
4.翻转reverse
#include<bits/stdc++.h>
reverse(str.begin(),str.end());
5.string、char、int
6.字符串比较
bool test(string r,const char * i){
if(strstr(r.c_str(),i))
return true;
else
return false;
}
7.
a=97 z=122 A=65 Z=90
原文:https://www.cnblogs.com/369529506panyue/p/15303092.html
评论(0)