- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
写个堆排序,快速排序等一些排序算法
写个堆排序,快速排序等一些排序算法
堆排序堆的存储数据结构就是一个数组,根据当前元素的
堆排序
堆的存储数据结构就是一个数组,根据当前元素的index,可以计算出其父节点和子节点的
index。
首先要建立一个堆,具体过程是按照完全二叉树的方式不断插入新元素,并同时向上调整堆。然后做堆排序,具体过程是取出堆顶元素,和最后一个元素交换,同时做堆的向下调整。 如果是大顶堆,每次都取出堆顶元素和最后一个元素交换,最后就能得到一个从小到到的排
序。
代码如下:
[html] view plaincopy
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
//大顶堆:按从小到大顺序输出
template class T
void insertBigHeap(T *arr, int i, int from, int end)
{
int hFrom = 0;
int hEnd = end - from; int hIndex = i - from;
int hParentIndex = (hIndex - 1)/2;
if( !(i = from i = end) )
{
printf(build heap condition error. when insertSmallHeap..); return;
}
if(hIndex == hFrom)//fisrt element for insert.
{
return;
}
else
{
while(hIndex 0)
{
if(arr[from + hIndex] = arr[from + hParentIndex])
{
break;
}
swap(arr[from + hIndex], arr[from + hParentIndex]);
hIndex
hIndex = hParentIndex;
hParentIndex = (hIndex - 1)/2;
31. }
32. }
33. } 34.
template class T
void buildBigHeap(T *arr, int size, int from, int end)
37. {
38.
39.
40.
41.
42.
43.
int i;
for(i=from; i=end; i++)
{
insertBigHeap(arr, i, from, end);
}
44. }
[html] view plaincopy
[html] view plaincopy
1. /*
[html] view plaincopy
[html] view plaincopy
1. arr 为数组
[html]
[html] view plaincopy
1. size
1. size 为数组大小
[html] view plaincopy
1. from
1. from 为数组中起始位置
[html] view plaincopy
1. end
1. end 为数组中结束位置
[html] view plaincopy
1. */
template class T
void bigHeapSorting(T *arr, int size, int from, int end) 4. {
int hIndex = 0;
int hChild = 2*hIndex + 1;
int hEnd = end - from;
8.
9. if((arr == NULL) || (from end) || (end = size))
10. {
printf(build heap condition error. when buildSmallHeap..);
return;
13. } 14.
15. buildBigHeap(arr, size, from, end); 16.
17. while(from end)
18. {
19. for(int x=from; x=end; x++)
20. {
21. printf(---%d, arr[x]);
22. }
printf(\n);
swap(arr[from], arr[end]);
printf(------arr[%d] = %d\n, end, arr[end]); 26.
27. while(hChild = hEnd -1)
28. {
29. if((hChild + 1 = hEnd - 1) (arr[from + hChild + 1] = a
文档评论(0)