sort函数中三个参数的用法

1、sort函数一般只对数组元素排序,而且必须知道地址。如对a[0]到a[n-1]共n个元素进行排序,用sort(ar,ar+n)。其中n可以为1,即对一个元素也可以使用sort函数。

2、可以有如下两种形式:

1、void sort(int *first,int *last);  //将数组按升序排序
2、void sort(int *first,int *last,bool cmp);     //cmp是一种比较的方法
cmp()函数中的参数是 结构体的例子如下:
//对输入的姓名排序
#include
#include
#include
#include
using namespace std;
struct man
{
	string name;
};
bool cmp(man a,man b)
{
	return strcmp(a.name.c_str(),b.name.c_str())<0;
}
int main()
{
	int m;							//测试用例数
	cin>>m;
	int n;							//测试的人数
	while(m--)
	{
		man ma[10];
		cin>>n;
		for(int i=0;i>ma[i].name;
		}
		sort(ma,ma+n,cmp);
		for(int j=0;j
cmp()函数中的参数是整数的例子如下:
#include
#include
using namespace std;
bool cmp(int a,int b)
{
	return a>b;
}
void main()
{
	int arr[4]={144,244,1224,2222};
	sort(arr,arr+4,cmp);
	cout<


你可能感兴趣的:(c/c++,算法)