c语言自动排序函数,C语言快速排序函数用法(qsort)

本文实例为大家分享了C语言快排函数用法,供大家参考,具体内容如下

#include

#include

#include

struct student

{

int id;

char name[12];

char sex;

};

int compare(const void* a,const void* b)//基本数据类型排序

{

return *(char*)a-*(char*)b;//从小到大

//取值//强转为相应类型的指针!!

}

int compare_struct(const void* a,const void* b)

{

return (*(struct student*)a).id-((struct student*)b)->id;

//注意优先级诶!//否则报错在非结构体中。。。

}

int compare_struct_duoji(const void* a,const void* b)//多级排序

{

struct student student_a=*(struct student*)a;

struct student student_b=*(struct student*)b;

if(student_a.id==student_b.id)

{

return student_a.sex-student_b.sex;

}

else

{

return student_a.id-student_b.id;

}

}

void main()

{

//*************char型*************

char a[5]="hello";

qsort(a,5,sizeof(a[0]),compare);

//元素个数//元素大小//函数指针

int i;

for(i=0;i<5;i++)

printf("%c ",a[i]);

printf("\n");

//************struct型************

struct student e[4]={{100,"chen",'m'},{100,"li",'f'}, \

{70,"wang",'f'},{100,"zhang",'m'}};

qsort(e,4,sizeof(e[1]),compare_struct_duoji);

for(i=0;i<4;i++)

printf("%d %s %c\n",e[i].id,e[i].name,e[i].sex);

}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持脚本之家。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值