①、它是完全二叉树,除了树的最后一层节点不需要是满的,其它的每一层从左到右都是满的。注意下面两种情况,第二种最后一层从左到右中间有断隔,那么也是不完全二叉树。
②、它通常用数组来实现。
这种用数组实现的二叉树,假设节点的索引值为index,那么:
节点的左子节点是 2*index+1,
节点的右子节点是 2*index+2,
节点的父节点是 (index-1)/2。
③、堆中的每一个节点的关键字都大于(或等于)这个节点的子节点的关键字。
这里要注意堆和前面说的二叉搜索树的区别,二叉搜索树中所有节点的左子节点关键字都小于右子节点关键字,在二叉搜索树中通过一个简单的算法就可以按序遍历节点。但是在堆中,按序遍历节点是很困难的,如上图所示,堆只有沿着从根节点到叶子节点的每一条路径是降序排列的,指定节点的左边节点或者右边节点,以及上层节点或者下层节点由于不在同一条路径上,他们的关键字可能比指定节点大或者小。所以相对于二叉搜索树,堆是弱序的。
前面我们说了,堆是弱序的,所以想要遍历堆是很困难的,基本上,堆是不支持遍历的。
对于查找,由于堆的特性,在查找的过程中,没有足够的信息来决定选择通过节点的两个子节点中的哪一个来选择走向下一层,所以也很难在堆中查找到某个关键字。
因此,堆这种组织似乎非常接近无序,不过,对于快速的移除最大(或最小)节点,也就冰墩墩雪容融征文是根节点,以及能快速插入新的节点,这两个操作就足够了。
移除是指删除关键字最大的节点(或最小),也就是根节点。
根节点在数组中的索引总是0,即maxnode = heaparray[0];
移除根节点之后,那树就空了一个根节点,也就是数组有了一个空的数据单元,这个空单元我们必须填上。
第一种方法:将数组所有数据项都向前移动一个单元,这比较费时。
第二种方法:
①、移走根②、把最后一个节点移动到根的位置③、一直向下筛选这个节点,直到它在一个大于它的节点之下,小于它的节点之上为止。具体步骤如下:
图a表示把最后一个节点移到根节点,图b、c、d表示将节点向下筛选到合适的位置,它的合适位置在最底层(有时候可能在中间),图e表示节点在正确位置的情景。
注意:向下筛选的时候,将目标节点和其子节点比较,谁大就和谁交换位置。
插入节点也很容易,插入时,选择向上筛选,节点初始时插入到数组最后第一个空着的单元,数组容量大小增一。然后进行向上筛选的算法。
注意:向上筛选和向下不同,向上筛选只用和一个父节点进行比较,比父节点小就停止筛选了。
首先我们要知道用数组表示堆的一些要点。若数组中节点的索引为x,则:
节点的左子节点是 2*index+1,
节点的右子节点是 2*index+2,
节点的父节点是 (index-1)/2。
注意:”/” 这个符号,应用于整数的算式时,它执行整除,且得到是是向下取整的值。
package com.ys.tree.heap; public class heap { private node[] heaparray; private int maxsize; private int currentsize; public heap(int mx) { maxsize = mx; currentsize = 0; heaparray = new node[maxsize];聊城大学分数线 } public boolean impty() { return (currentsize == 0)? true : fal; } public boolean isfull() { return (currentsize == maxsize)? true : fal; } public boolean inrt(int key) { if(isfull()) { return fal; } node newnode = new node(key); heaparray[currentsize] = newnode; trickleup(currentsize++); return true; } //向上调整 public void trickleup(int index) { int parent = (index - 1) / 2; //父节点的索引 node bottom = heaparray[index]; //将新加的尾节点存在bottom中 while(index > 0 && heaparray[parent].getkey() < bottom.getkey()) { heaparray[index] = heaparray[parent]; index = parent; parent = (parent - 1) / 2; } heaparray[index] = bottom; } public node remove() { node root = heaparray[0]; heaparray[0] = heaparray[--currentsize]; trickledown(0); return root; } //向下调整 public void trickledown(int index) { node top = heaparray[index]; int largechildindex; while(index < currentsize/2) { //while node has at least one child int leftchildindex = 2 * index + 1; int rightchildindex = leftchildindex + 1; //find larger child if(rightchildindex < currentsize && //rightchild exists? heaparray[leftchildindex].getkey() < heaparray[rightchildindex].getkey()) { largechildindex = rightchildindex; } el { largechildindex = leftchildindex; } if(top.getkey() >= heaparray[largechildindex].getkey()) { break; } heaparray[index] = heaparray[largechildindex]; index = largechildindex; } heaparray[index] = top; } //根据索引改变堆中某个数据 public boolean change(int index, int newvalue) { if(index < 0 验车流程|| index >= currentsize) { return fal; } int oldvalue = heaparray[index].getkey(); heaparray[index].tkey(newvalue); if(oldvalue < newvalue) { trickleup(index); } el { trickledown(index); } return true; } public void displayheap() { system.out.println("heaparray(array format): "); for(int i = 0; i < currentsize; i++) { if(heaparray[i] != null) { system.out.print(heaparray[i].get绅士的意思key() + " "); } el { system.out.print("--"); } } }}class node { private int idata; public node(int key) { idata = key; } public int getkey() { return idata; } public void tkey(int key)牛顿冷却定律 { idata = key; }}
本篇文章就到这里了,希望能够给你带来帮助,也希望您能够多多关注www.887551.com的更多内容!
本文发布于:2023-04-04 17:01:35,感谢您对本站的认可!
本文链接:https://www.wtabcd.cn/fanwen/zuowen/7c37ad0d0f972b90cb0efea077607e2e.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文word下载地址:深入了解Java数据结构和算法之堆.doc
本文 PDF 下载地址:深入了解Java数据结构和算法之堆.pdf
留言与评论(共有 0 条评论) |