algorithm常用函数
1. sort函数
排序
代码及结果:
2.swap函数
交换两个数
代码及截图:
3.min,max函数
求最大最小值
代码及截图:
参考
http://www.cplusplus.com/reference/algorithm/
4.大小写字母转换
在string型字符串中
- 将s1中的字符串改写成小写字母的字符串存在s2中:
1 | transform(s1.begin(),s1.end(),back_inserter(s2),::tolower); |
- 将s3中的字符串改写成大写字母的字符串存在s4中:
1 | transform(s3.begin(),s3.end(),back_inserter(s4),::toupper); |