发布网友 发布时间:2022-04-21 21:39
共4个回答
热心网友 时间:2022-04-25 03:38
使用sort()函数在做简单排序算法时候是非常好的方法。
sort(buffer,buffer+n,cmp); buffer为待排序数组的首地址,buffer+n为待排序数组的最后一个数据的地址。cmp为自定义的排序规则函数,可省略。
sort()函数默认是为升序排列,允许排序类型包括数值/字符/字符串。sort()也可以对结构体进行排序。
cmp函数的返回值为true和false或1和0,若为true/1,则sort()函数为升序排列,若为false/0,则sort()函数为降序排列。
下面为一个找出奶牛产奶量中间值的小程序,举例说明:
#include "iostream"
#include "algorithm"
using namespace std;
//奶牛结构类
typedef struct
{
int milk;
int num;
}COW;
COW cow[100];
bool cmp(COW A, COW B);
//主函数
void main()
{
int n;
cout<<"请输入奶牛的数量: ";
cin>>n;
for(int i=1;i<=n; i++)
{
cout<<"请输入奶牛"<<i<<"的产奶量: ";
cin>>cow[i-1].milk;
cow[i-1].num = i;
}
sort(cow,cow+n,cmp); //排序比较
cout<<"中间奶牛产奶量为: "<<cow[n/2].milk<<endl;
system("pause");
}
//cmp排序规则函数
bool cmp(COW A, COW B)
{
if (A.milk < B.milk) //按产奶量由小到大排序
{
return true;
}
else if (A.milk == B.milk)
{
if (A.num > B.num) //产奶量相同时,按序号由大到小排序
{
return true;
}
return false;
}
else
{
return false;
}
}
热心网友 时间:2022-04-25 04:56
察看msdn的帮助阿
sort
template<class RanIt>
void sort(RanIt first, RanIt last);
template<class RanIt, class Pred>
void sort(RanIt first, RanIt last, Pred pr);
The first template function reorders the sequence designated by iterators in the range [first, last) to form a sequence ordered by operator<. Thus, the elements are sorted in ascending order.
The function evaluates the ordering predicate X < Y at most ceil((last - first) * log(last - first)) times.
The second template function behaves the same, except that it replaces operator<(X, Y) with pr(X, Y).
热心网友 时间:2022-04-25 06:31
#include <algorithm>
void sort( iterator start, iterator end );
void sort( iterator start, iterator end, StrictWeakOrdering cmp );
热心网友 时间:2022-04-25 08:22
报什么错??