C语言qsort库函数使用说明

qsort即快速怕排序函数,包含在头文件stdlib.h或search.h中,函数的声明如下所示:

void qsort( void *base, size_tnum, size_t width, int (__cdecl *compare )(const void *elem1, const void *elem2 ) );

base: 数组其实地址 num:数组元素个数 width:每个元素占的字节数 compare:比较函数

elem1:Pointer to the key for the search  elem2:Pointer to the array element to be compared with the key

qsort函数会在运行时调用compre函数进行数组间元素大小的比较。

compare函数的形式如下所示:

int (__cdecl *compare )(const void *elem1, const void *elem2 )

compare函数的返回值的正负与元素之间的大小关系如下所示:

<0:elem1 less than elem2     

=0:elem1 equivalent to elem2

>0:elem1 greater than elem2


下面几个例子是qsort函数的应用:

1.使用qsort对整数型数组排序

int isShort(const void *elem1, const void *elem2)
{
	return *(int *)elem1 - *(int *)elem2;
}

int main()
{
	int arr[] = {5, 3, 1, 8, 9, 4, 7, 10, 2, 6};

	qsort(arr, 10, sizeof(int), isShort);

	return 0;
}

2.使用qsort对字符型数组排序

int isShort(const void *elem1, const void *elem2)
{
	return *(char *)elem1 - *(char *)elem2;
}
3.使用qsort对浮点型数组排序

int isShort(const void *elem1, const void *elem2)
{
	return *(double *)elem1 < *(double *)elem2 ? -1 : 1;
}

3.使用qsort对结构体型数组排序

struct A {
	int a;
	int b;
};
若a相等,则按b进行排序,否则按a进行排序
int isShort(const void *elem1, const void *elem2)
{
	struct A* obj1 = (struct A*)elem1;
	struct A* obj2 = (struct A*)elem2;
	if (obj1->a == obj2->a)
	{
		return obj1->b - obj2->b;
	}
	else
	{
		return obj1->a - obj2->a;
	}
}
4.使用qsort对char*型数组排序

int isShort(const void *elem1, const void *elem2)
{
	return strcmp(*(char **)elem1, *(char **)elem2);
}





                
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值