转:http://blog.csdn.net/cdnight/article/details/11650983
此坑待埋。
点击打开漫谈经典排序算法:一、从简单选择排序到堆排序的深度解析链接
白话经典算法系列之七 堆与堆排序
二叉排序树与二叉堆
堆排序(注:这篇文章说明了如何从一个数组构建一个最大堆,推荐看)
最大堆的插入/删除/调整/排序操作(图解+程序)(JAVA)
下面来说一说具体算法。
堆排序解释第一篇(描述不太清楚)
1.堆
堆实际上是一棵完全二叉树,其任何一非叶节点满足性质:
Key[i]<=key[2i+1]&&Key[i]<=key[2i+2]或者Key[i]>=Key[2i+1]&&key>=key[2i+2]
即任何一非叶节点的关键字不大于或者不小于其左右孩子节点的关键字。
堆分为大顶堆和小顶堆,满足Key[i]>=Key[2i+1]&&key>=key[2i+2]称为大顶堆,满足 Key[i]<=key[2i+1]&&Key[i]<=key[2i+2]称为小顶堆。由上述性质可知大顶堆的堆顶的关键字肯定是所有关键字中最大的,小顶堆的堆顶的关键字是所有关键字中最小的。
2.堆排序的思想
利用大顶堆(小顶堆)堆顶记录的是最大关键字(最小关键字)这一特性,使得每次从无序中选择最大记录(最小记录)变得简单。
其基本思想为(大顶堆):
1)将初始待排序关键字序列(R1,R2....Rn)构建成大顶堆,此堆为初始的无序区;
2)将堆顶元素R[1]与最后一个元素R[n]交换,此时得到新的无序区(R1,R2,......Rn-1)和新的有序区(Rn),且满足R[1,2...n-1]<=R[n];
3)由于交换后新的堆顶R[1]可能违反堆的性质,因此需要对当前无序区(R1,R2,......Rn-1)调整为新堆,然后再次将R[1]与无序区最后一个元素交换,得到新的无序区(R1,R2....Rn-2)和新的有序区(Rn-1,Rn)。不断重复此过程直到有序区的元素个数为n-1,则整个排序过程完成。
操作过程如下:
1)初始化堆:将R[1..n]构造为堆;
2)将当前无序区的堆顶元素R[1]同该区间的最后一个记录交换,然后将新的无序区调整为新的堆。
因此对于堆排序,最重要的两个操作就是构造初始堆和调整堆,其实构造初始堆事实上也是调整堆的过程,只不过构造初始堆是对所有的非叶节点都进行调整。
下面举例说明:
给定一个整形数组a[]={16,7,3,20,17,8},对其进行堆排序。
首先根据该数组元素构建一个完全二叉树,得到
然后需要构造初始堆,则从最后一个非叶节点开始调整,调整过程如下:
20和16交换后导致16不满足堆的性质,因此需重新调整
这样就得到了初始堆。
即每次调整都是从父节点、左孩子节点、右孩子节点三者中选择最大者跟父节点进行交换(交换之后可能造成被交换的孩子节点不满足堆的性质,因此每次交换之后要重新对被交换的孩子节点进行调整)。有了初始堆之后就可以进行排序了。
这样整个区间便已经有序了。
从上述过程可知,堆排序其实也是一种选择排序,是一种树形选择排序。只不过直接选择排序中,为了从R[1...n]中选择最大记录,需比较n-1次,然后从R[1...n-2]中选择最大记录需比较n-2次。事实上这n-2次比较中有很多已经在前面的n-1次比较中已经做过,而树形选择排序恰好利用树形的特点保存了部分前面的比较结果,因此可以减少比较次数。对于n个关键字序列,最坏情况下每个节点需比较log2(n)次,因此其最坏情况下时间复杂度为nlogn。堆排序为不稳定排序,不适合记录较少的排序。
【ok,从一个原始数组调整成为一个堆,想必已经很清楚了,那么如何从堆里面获取数据变成已经排好序的数组呢?】
下面是一个例子:
0.待排序序列:
A[6]={3,5,8,9,1,2},
1.建堆后(建堆过程参见4.4):
A[6]={9,3,8,5,1,2}
2.9和2交换,然后把9从堆中去掉后:
A[6]={2,3,8,5,1,9}
3.筛选法调整堆A[5]={2,3,8,5,1}后(调整过程参见4.3):
A[6]={8,3,2,5,1,9}
4.堆顶记录与最后一个记录互换,重复第二步,但是堆顶记录和最后一个记录的值变了
【附上另一篇文章---
最大堆的插入/删除/调整/排序操作(图解+程序)(JAVA)】
最大堆的插入/删除/调整/排序操作(图解+程序)(JAVA)
堆有最大堆和最小堆之分,最大堆就是每个节点的值都>=其左右孩子(如果有的话)值的完全二叉树。最小堆便是每个节点的值都<=其左右孩子值的完全二叉树。
设有n个元素的序列{k1,k2,...,kn},当且仅当满足下列关系时,称之为堆。
堆的三种基本操作(以下以最大堆为例):
⑴最大堆的插入
由于需要维持完全二叉树的形态,需要先将要插入的结点x放在最底层的最右边,插入后满 足完全二叉树的特点;
然后把x依次向上调整到合适位置满足堆的性质,例如下图中插入80,先将80放在最后,然后两次上浮到合适位置.
时间:O(logn)。 “结点上浮”
程序实现:
[java] view plain copy print ?
-
- public static void insert(List heap, int value) {
-
- if(heap.size()==0)
- heap.add(0);
- heap.add(value);
-
-
- heapUp(heap, heap.size() - 1);
-
- }
-
-
- public static void heapUp(List heap, int index) {
-
-
- if (index > 1) {
-
- int parent = index / 2;
-
-
- int parentValue = (Integer) heap.get(parent);
- int indexValue = (Integer) heap.get(index);
-
- if (parentValue < indexValue) {
-
- swap(heap, parent, index);
-
- heapUp(heap, parent);
- }
-
- }
- }
⑵删除
操作原理是:当删除节点的数值时,原来的位置就会出现一个孔,填充这个孔的方法就是,
把最后的叶子的值赋给该孔并下调到合适位置,最后把该叶子删除。
如图中要删除72,先用堆中最后一个元素来35替换72,再将35下沉到合适位置,最后将叶子节点删除。
“结点下沉”
【勘误】
大家看到上面的删除过程是不是觉得很容易明白?
我也如此认为,直到我写程序时候出现了问题才重新审视删除算法的正确性。
譬如说:现在有一个最小堆,如下图:
现在我选中了93,并且要删除它,接下来会发生什么事?
接下来就是这个算法的结果了:
对,当节点没有空间下沉的时候它就会无所事事,结果导致不对了。
这种情况下面我们可以借用插入过程的上浮调整方式,从最下面开始向上调整。
[java] view plain copy print ?
- 程序:
-
-
-
-
-
-
- public static void delete(List heap,int index) {
-
- heap.set(index, heap.get(heap.size() - 1));
-
-
- heapDown(heap, index);
-
- heap.remove(heap.size() - 1);
- }
-
-
-
-
-
-
- public static void heapDown(List heap, int index) {
-
- int n = heap.size() - 2;
-
-
- int child = -1;
-
-
- if (2 * index > n) {
- return;
- }
- else if (2 * index < n) {
-
-
- child = 2 * index;
-
- if ((Integer) heap.get(child) < (Integer) heap.get(child + 1)) {
- child++;
- }
-
- }
- else if (2 * index == n) {
- child = 2 * index;
- }
-
- if ((Integer) heap.get(child) > (Integer) heap.get(index)) {
-
- swap(heap, child, index);
-
-
- heapDown(heap, child);
- }
- }
-
⑶初始化
方法1:插入法:
从空堆开始,依次插入每一个结点,直到所有的结点全部插入到堆为止。
时间:O(n*log(n))
方法2:调整法:
序列对应一个完全二叉树;从最后一个分支结点(n div 2)开始,到根(1)为止,依次对每个分支结点进行调整(下沉),
以便形成以每个分支结点为根的堆,当最后对树根结点进行调整后,整个树就变成了一个堆。
时间:O(n)
对如图的序列,要使其成为堆,我们从最后一个分支结点(10/2),其值为72开始,依次对每个分支节点53,18,36 45进行调整(下沉).
【补充说明】
如何获取相应数组序列?
方法是依次将堆的根节点的小数记下,然后删除根节点,如此反复直到堆为空。上面提到了删除操作,每次删除之后都是要调整堆让堆的性质不变,即根节点必为最大值或最小值,明白了吗?
[java] view plain copy print ?
- 程序:
-
- public static void adjust(List heap){
- for (int i = heap.size() / 2; i > 0; i--)
- adjust(heap,i, heap.size()-1);
-
- System.out.println("=================================================");
- System.out.println("调整后的初始堆:");
- print(heap);
- }
-
-
-
-
-
- public static void adjust(List heap,int i, int n) {
-
- int child;
- for (; i <= n / 2; ) {
- child = i * 2;
- if(child+1<=n&&heap.get(child)1))
- child+=1;
- if(heap.get(i)< heap.get(child)){
- swap(heap,i, child);
-
- i = child;
-
- } else break;
- }
- }
(4)最大堆排序
[java] view plain copy print ?
-
- public static void heapSort(List heap) {
-
- for (int i = heap.size()-1; i > 0; i--) {
-
- swap(heap,1, i);
- adjust(heap,1, i - 1);
- }
- }
(5)完整的代码
[java] view plain copy print ?
- import java.util.*;
-
-
-
-
-
- public class Heap {
-
-
-
-
-
-
- public static void delete(List heap,int index) {
-
- heap.set(index, heap.get(heap.size() - 1));
-
-
- heapDown(heap, index);
-
- heap.remove(heap.size() - 1);
- }
-
-
-
-
-
-
-
-
- public static void heapDown(List heap, int index) {
-
- int n = heap.size() - 2;
-
-
- int child = -1;
-
-
- if (2 * index > n) {
- return;
- }
- else if (2 * index < n) {
-
-
- child = 2 * index;
-
- if ((Integer) heap.get(child) < (Integer) heap.get(child + 1)) {
- child++;
- }
-
- }
- else if (2 * index == n) {
- child = 2 * index;
- }
-
- if ((Integer) heap.get(child) > (Integer) heap.get(index)) {
-
- swap(heap, child, index);
-
-
- heapDown(heap, child);
- }
- }
-
-
- public static void heapDown2(List heap, int index) {
- int child = 0;
-
- int temp = (Integer) heap.get(index);
- int n = heap.size() - 2;
-
- for (; 2 * index <= n; index = child) {
-
- child = 2 * index;
-
- if (child == n) {
- child = 2 * index;
- }
- else if ((Integer) heap.get(child) < (Integer) heap.get(child + 1)) {
- child++;
- }
-
-
- if ((Integer) heap.get(child) >temp) {
-
- swap(heap, child, index);
- } else {
- break;
- }
- }
- }
-
-
-
- public static void print(List list) {
- for (int i = 1; i < list.size(); i++) {
- System.out.print(list.get(i) + " ");
- }
- System.out.println();
- }
-
-
- public static void swap(List heap, int a, int b) {
-
- int temp = (Integer) heap.get(a);
-
-
- heap.set(a, heap.get(b));
-
-
- heap.set(b, temp);
- }
-
-
- public static void insert(List heap, int value) {
-
- if(heap.size()==0)
- heap.add(0);
- heap.add(value);
-
-
- heapUp(heap, heap.size() - 1);
-
- }
-
-
- public static void heapUp(List heap, int index) {
-
-
- if (index > 1) {
-
- int parent = index / 2;
-
-
- int parentValue = (Integer) heap.get(parent);
- int indexValue = (Integer) heap.get(index);
-
- if (parentValue < indexValue) {
-
- swap(heap, parent, index);
-
- heapUp(heap, parent);
- }
-
- }
- }
-
-
- public static void heapUp2(List heap, int index) {
- int parent = 0;
- for (; index > 1; index /= 2) {
-
- parent = index / 2;
-
-
- int parentValue = (Integer) heap.get(parent);
-
- int indexValue = (Integer) heap.get(index);
-
-
- if (parentValue < indexValue) {
- swap(heap, parent, index);
- }
- }
- }
-
- public static void adjust(List heap){
- for (int i = heap.size() / 2; i > 0; i--)
- adjust(heap,i, heap.size()-1);
-
- System.out.println("=================================================");
- System.out.println("调整后的初始堆:");
- print(heap);
- }
-
-
-
-
-
- public static void adjust(List heap,int i, int n) {
-
- int child;
- for (; i <= n / 2; ) {
- child = i * 2;
- if(child+1<=n&&heap.get(child)1))
- child+=1;
- if(heap.get(i)< heap.get(child)){
- swap(heap,i, child);
-
- i = child;
-
- } else break;
- }
- }
-
-
- public static void heapSort(List heap) {
-
- for (int i = heap.size()-1; i > 0; i--) {
-
- swap(heap,1, i);
- adjust(heap,1, i - 1);
- }
- }
- public static void main(String args[]) {
- List array = new ArrayList(Arrays.asList(null,
- 1, 2, 5, 10, 3, 7, 11, 15, 17, 20, 9, 15, 8, 16));
- adjust(array);
-
- delete(array,8);
- System.out.println("删除后");
- print(array);
- insert(array, 99);
- print(array);
- heapSort(array);
- System.out.println("将堆排序后:");
- print(array);
- System.out.println("-------------------------");
- List array1=new ArrayList();
- insert(array1,0);
- insert(array1, 1);insert(array1, 2);insert(array1, 5);
- insert(array1, 10);insert(array1, 3);insert(array1, 7);
- insert(array1, 11);insert(array1, 15); insert(array1, 17);
- insert(array1, 20);insert(array1, 9);
- insert(array1, 15);insert(array1, 8);insert(array1, 16);
- print(array1);
-
- System.out.println("==============================");
- array=new ArrayList(Arrays.asList(null,45,36,18,53,72,30,48,93,15,35));
- adjust(array);
- insert(array, 80);
- print(array);
- delete(array,2);
- print(array);
- delete(array,2);
- print(array);
-
- }
- }
程序运行:
D:\java>java Heap
=================================================
调整后的初始堆:
20 17 16 15 9 15 11 1 10 3 2 7 8 5
删除后
20 17 16 15 9 15 11 5 10 3 2 7 8
99 17 20 15 9 15 16 5 10 3 2 7 8 11
将堆排序后:
2 3 5 7 8 9 10 11 15 15 16 17 20 99
-------------------------
20 17 16 10 15 9 15 0 5 2 11 1 7 3 8
==============================
=================================================
调整后的初始堆:
93 72 48 53 45 30 18 36 15 35
93 80 48 53 72 30 18 36 15 35 45
93 72 48 53 45 30 18 36 15 35
93 53 48 36 45 30 18 35 15
好了,想必大家都明白了,下一篇文章将放出相关算法及结果。