sort函数与结构体体排序

*快速排序函数---sort的应用模板*/

**************************

#include

using  namespace std;

**************************

sort(a,a+k);       //两个参数分别为待排序数组的首地址和区间尾地址的【下一地址】,也可以说是数组的长度。可以直接对数组排序,复杂度为n*log2(n),而冒泡为n^2。

默认的排序方式是升序,排序的数据类型不局限于整数,只要是定义了小于运算的类型都可以,比如字符串类string。如果是没有定义小于运算的数据类型,或者想改变排序的顺序,就要用到第三参数——比较函数。比较函数是一个自己定义的函数,返回值是

bool型,自己也可以定义成int形,它规定了什么样的关系才是“小于”。

/*简单例题*/

/*hdu(开门人与关门人)*/
#include
#include
#include
using namespace std;
struct stu
{
	char a[100];
	char b[20];
	char c[20];
}z[500];
int cmp1(stu x,stu y)
{
	return strcmp(x.b,y.b)<0;
}
int cmp2(stu x,stu y)
{
	return strcmp(x.c,y.c)>0;
}
int main()
{
	int n,m,i;
	scanf("%d",&n);
	while(n--)
	{
		scanf("%d",&m);
		for(i=0;i
#include
#include
using namespace std;
struct stu
{
	char xuehao[10];
	char name[10];
	int score;
}z[M];
int cmp1(stu x,stu y)
{
	return strcmp(x.xuehao,y.xuehao)<0;
}
int cmp2(stu x,stu y)
{
	if(strcmp(x.name,y.name)==0)
	return strcmp(x.xuehao,y.xuehao)<0;
	else return strcmp(x.name,y.name)<0;
}
int cmp3(stu x,stu y)
{
		if(x.score==y.score)
	return strcmp(x.xuehao,y.xuehao)<0;
	else return x.score

/hdu*今年暑假不ac*/

#include
#include
#include
using namespace std;
struct stu
{
    int star;
    int end;
}x[101];
int cmp(stu a,stu b)
{
    return a.end=p)
        {
        k++;
        p=x[j].end;
        }
        else continue;    
    }
    printf("%d\n",k);
}
    return 0;
}


你可能感兴趣的:(排序)