首页 > 其他 > 详细

关于algorithm头文件常用的函数

时间:2020-12-02 23:24:07      阅读:38      评论:0      收藏:0      [点我收藏+]
 1 #include <iostream>
 2 #include <algorithm>
 3 #include <string>
 4 using namespace std;
 5 int main()
 6 {
 7     int a = 10;
 8     int b = 5;
 9     int c = 12;
10     swap(a, b);//交换
11     cout << a << endl;
12     cout << b << endl;
13     cout << max(a, b) << endl;//求两数最大
14     cout << max(a, max(b,c)) << endl;
15     cout << min(a, c) << endl;
16     string s = "abcdef";
17     reverse(s.begin(),s.end());
18     for (int i=0;i<s.length();++i)
19     {
20         cout << s[i];
21     }
22     cout << endl;
23     int d[5] = { 1,2,3,4,5 };
24     fill(d, d + 3, 6);//指定范围填充数
25     for (int i=0;i<5;++i)
26     {
27         cout << d[i];
28     }
29     return 0;
30 }

还有个sort函数,见stl篇

关于algorithm头文件常用的函数

原文:https://www.cnblogs.com/dss-99/p/14076972.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!