博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
算法精解---计数排序
阅读量:6216 次
发布时间:2019-06-21

本文共 1320 字,大约阅读时间需要 4 分钟。

#include 
#include
#include
#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
请按任意键继续. . .

转载地址:http://gwvja.baihongyu.com/

你可能感兴趣的文章
分布式搜索Elasticsearch_配置
查看>>
linux 单引号,双引号,反引号
查看>>
介绍一款超实用的演讲必备工具 ZoomIt
查看>>
test
查看>>
定义一个健壮的Android Service (IntentService)类
查看>>
jeecg3.5.0-maven版本-开发环境搭建步骤-myeclipse
查看>>
莱特币litecoin ASIC挖矿机配置三
查看>>
win7 Host 与virtualbox 中的 ubuntu 11.04 共享文件夹
查看>>
Ubuntu linux 关机、重启、注销 命令 (linux)
查看>>
CoffeeScript 速抄本
查看>>
nginx做本地端口代理的问题
查看>>
客户端Web绘图VML与SVG
查看>>
java.io.IOException: 您的主机中的软件中止了一个已建立的连接。
查看>>
ace udp 组播
查看>>
URL编码以及get和post请求乱码问题
查看>>
gzip: stdin: not in gzip format 解决办法
查看>>
二维码扫描
查看>>
耐思尼克今起开放CN域名个人注册
查看>>
CentOS 5.5下安装MySQL 5.5全过程分享
查看>>
scala第八天
查看>>