博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
排序-堆排序
阅读量:5760 次
发布时间:2019-06-18

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

 

void swap(int * a,int * b){    int temp = *a;    *a = *b;    *b = temp;}void PercDown(int * array,int p,int N){    int child,parent;    int x = array[p];    for (parent = p; (parent*2+1)
=0; --i) {//创建堆 PercDown(array,i,N); } for (i = N-1; i>0 ; --i) { swap(&array[0], &array[i]); PercDown(array, 0, i); }}

 

参考:网易云课堂:浙江大学-数据结构-陈越、何钦铭

 

posted on
2018-03-03 15:40 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/roger-jc/p/8496853.html

你可能感兴趣的文章
大学生创业计划书(原创)
查看>>
no such file django-admin.py
查看>>
RedHat Enterprise Linux 6.3正式版发布下载
查看>>
server unexpectedly closed network connection
查看>>
性能测试培训总结-Abnormal termination, caused by mdrv process termination
查看>>
我的友情链接
查看>>
tcp/ip各层长度
查看>>
zabbix免客户端监控网站URL
查看>>
jQuery Select 自动选择默认值
查看>>
Android学习笔记-----------内容提供者
查看>>
操作系统的发展史
查看>>
零基础入门深度学习(6) - 长短时记忆网络(LSTM)
查看>>
Git异常:Cannot delete the branch 'test1' which you are currently on
查看>>
17搜索-服务器搭建
查看>>
杭电4324--Triangle LOVE(拓扑排序)
查看>>
python导出数据到excel
查看>>
lctf2018 easyheap exp for libc2.26
查看>>
php: Cannot send session cache limiter
查看>>
Generate Parentheses(组合,回溯)
查看>>
401 Palindromes
查看>>