算法精解---计数排序

Posted Engineer-Bruce_Yang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了算法精解---计数排序相关的知识,希望对你有一定的参考价值。

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define NR(x) sizeof(x)/sizeof(x[0])

//计数排序
//排序成功返回0,否则返回-1
//局限:只能用于整型或者那些可以用整型来表示的数据集合 
//优点:速度快,稳定 

/*
	利用计数排序将数组data中的整数进行排序。
	data中的元素个数由sized决定。
	参数k为data最大的整数加1,当ctsort返回时,k为data中最大的整数加1 
	复杂度:O(n+k) , N为要排序的元素个数,k为data中最大的整数加1 
*/
int ctsort(int *data, int size, int k)
{

	int   *counts,*temp;
	int   i,j;
	if ((counts = (int *)malloc(k * sizeof(int))) == NULL)
	   return -1;
	if ((temp = (int *)malloc(size * sizeof(int))) == NULL)
	   return -1;
	for (i = 0; i < k; i++)
	   counts[i] = 0;
	for (j = 0; j < size; j++)
	   counts[data[j]] = counts[data[j]] + 1;
	for (i = 1; i < k; i++)
	   counts[i] = counts[i] + counts[i - 1];
	for (j = size - 1; j >= 0; j--) {
	   temp[counts[data[j]] - 1] = data[j];
	   counts[data[j]] = counts[data[j]] - 1;
	}

	memcpy(data, temp, size * sizeof(int));
	free(counts);
	free(temp);
	return 0;
}

int main(void)
{   
    int buffer[10] = {1,3,2,7,4,8,9,22,12,13} ;
    int i ; 
	ctsort(buffer , NR(buffer) ,23) ; 
	for(i = 0 ; i < NR(buffer) ; i++)
		printf("buffer[%d]:%d\n",i,buffer[i]) ;
    return 0 ;
}

运行结果:

buffer[0]:1
buffer[1]:2
buffer[2]:3
buffer[3]:4
buffer[4]:7
buffer[5]:8
buffer[6]:9
buffer[7]:12
buffer[8]:13
buffer[9]:22


--------------------------------
Process exited after 0.04599 seconds with return value 0
请按任意键继续. . .

以上是关于算法精解---计数排序的主要内容,如果未能解决你的问题,请参考以下文章

算法排序算法之计数排序

排序算法非比较排序:计数排序基数排序桶排序

算法 计数排序

算法计数排序桶排序和基数排序详解

十大经典排序算法总结(计数排序)

计数排序基数排序桶排序