附录B sort函数
我们可以利用C++中的排序函数sort,对古董的重量进行从小到大排序。要使用此函数,只需引入头文件:
#include <algorithm>
语法描述为:
sort(begin, end)// 参数begin, end表示一个范围,分别为待排序数组的首地址和尾地址。
例如:
//mysort1
#include<cstdio>
#include<iostream>
#include<algorithm>
using namespace std;
int main()
{
int a[10]={7,4,5,23,2,73,41,52,28,60},i;
for(i=0;i<10;i++)
cout<<a[i]<<" ";
cout<<endl;
sort(a,a+10);
for(i=0;i<10;i++)
cout<<a[i]<<" ";
return 0;
}
输出结果为: