首页 > 代码库 > 堆排序
堆排序
堆是一棵完全二叉树,它的每个结点大于或等于它的任意一个孩子。
在Java中可以用一个ArrayList存储堆,则对于位于 i 处的结点,它的左孩子在位置2i+1处,它的右孩子在位置2i+2处,而它的父亲在位置(i-1)/2处。
1.添加一个新结点:
1 Let the last node be the current node;2 while(the current node is greater than its parent){3 Swap the current node with its parent;4 Now the current node is one level up;5 }
2.删除根结点
1 Move the last node to replace the root;2 Let the root be the current node;
堆排序
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。