左式堆Java_【数据结构】回顾优先队列(堆)

1.优先队列有两项基本操作:插入(insert)和删除最小项(deleteMin),后者的工作是找出、返回和删除优先队列中最小的元素。而insert操作则等价于enqueue(入队),deleteMin则等价于dequeue(出队)。补充:C++提供2个版本的deleteMin,一个删除最小项,另一个在删除最小项的同时在通过引用传递的对象中存储所删除的值。

b610422ef045c4109b13254b04d9431a.png

2.优先队列的类接口

template

class BinaryHeap

{

public:

explicit BinaryHeap(int capacity=100);

explicit BinaryHeap(const vector & items);

bool isEmpty() const;

const Comparable & findMin() const;

void insert(const Comparable & x);

void deleleMin();

void deleteMin(Comparable & minItem);

void makeEmpty();

private:

int currentSize;

vector array;

void buildHeap();

void percolateDown(int hole);

};

3.插入到一个二叉堆

void insert(const Comparable & x)

{

if(currentSize==array.size()-1)

array.resize(array.size()*2);

int hole=++currentSize;

for(;hole>1&&x

array[hole] =array[hole/2];

array[hole]=x;

}

4.在二叉堆中执行deleteMin

void deleteMin()

{

if(isEmpty())

throw UnderflowException();

array[1]=array[currentSize--];

percolateDown(1);

}

void deleteMin(Comparable & minItem)

{

if(isEmpty())

throw UnderflowException();

minItem=array[1];

arrary[1]=array[currentSize--];

percolateDown(1);

}

void percolateDown(int hole)

{

int child;

Comparable tmp=array[hole];

for(;hole*2<=currentSize;hole=child)

{

child=hole*2;

if(child!=currentSize&&array[child+1]

child++;

if(array[child]

array[hole]=array[child];

else

break;

}

array[hole]=tmp;

}

5.左式堆(leftist heap)像二叉堆那样既有结构性质,又有堆序性质。左序堆也是二叉树,它和二叉树的唯一区别是:左式堆不是理想平衡的(perfectly balanced),而且事实上是趋于非常不平衡的。左式堆的性质:对于堆中的每一个结点X,左儿子的零路径至少于右儿子的零路径长一样大。由于左式堆是趋向于加深左路径,因此右路径应该很短,沿左式堆右侧的右路径确实是该堆中最短的路径。否则就会存在一条路径通过某个结点X并取得左儿子,此时X就破坏了左式堆的性质。

6.对左式堆的基本操作是合并(插入只是合并的特殊情形)。左式堆类型声明:

template

class LeftistHeap { public: LeftistHeap(); LeftistHeap(const LeftistHeap & rhs); ~LeftistHeap(); bool isEmpty() const; const Comparable & findMin() const; void insert(const Comparable & x); void deleteMin(); void deleteMin(Comparable & minItem); void makeEmpty(); void merge(LeftistHeap & rhs); const LeftistHeap & operator=(const LeftistHeap & rhs); private: struct LeftistNode { Comparable element; LeftistNode *left; LeftistNode *right; int npl; LeftistNode(const Comparable & theElement, LeftistNode * lt=NULL, LeftistNode * rt=NULL,int np=0) :element(theElement),left(lt),right(rt),npl(np){} }; LeftistNode *root; LeftistNode *merge (LeftistNode *h1,LeftistNode *h2); LeftistNode *merge1(LeftistNode *h1,LeftistNode *h2); void swapChildren(LeftistNode *t); void reclainMemory(LeftistNode *t); LeftistNode *clone(LeftistNode *t) const; };

7.合并左式堆的驱动程序和实际程序

void merge(LeftistHeap & rhs)

{

if(this==&rhs)

return;

root=merge(root,rhs.root);

rhs.root=NULL;

}

LeftistNode * merge(LeftistNode *h1,LeftistNode *h2)

{

if(h1==NULL)

return h2;

if(h2==NULL)

return h1;

if(h1->elementelement)

return merge1(h1,h2);

else

return merge1(h2,h1);

}

LeftistNode *merge1(LeftistNode *h1,LeftistNode *h2)

{

if(h1->left==NULL)

h1->left=h2;

else

{

h1->right=merge(h1->right,h2);

if(h1->left->nplright-np1)

swapChildren(h1);

h1->npl=h1->right->npl+1;

}

return h1;

}

8.左式堆的insert程序和deleteMin程序

void insert(const Comparable & x) { root=merge(new LeftistNode(x).root);

}

void deleteMin()

{

if(isEmpty())

throw UnderflowException();

LeftistNode *oldRoot=root;

root=merge(root->left,root->right);

delete oldRoot;

}

void delteMin(Comparable & minItem)

{

minItem=findMin();

deleteMin();

}

9.二项队列不是一棵堆序的树,而是堆序的集合,称为森林(forest)。

ebd2cec7c85311554b608197c5ed7d98.png

fe956ef2c339afe467400b25442a86c9.png

10.二项队列类构架及结点定义:

template

class BinomialQueue

{

public:

BinomialQueue();

BinomialQueue(const Comparable & item);

BinomialQueue(const BinomialQueue & rhs);

~BinomialQueue();

bool isEmpty() const;

const Comparable & findMin() const;

void insert(const Comparable & x);

void deleteMin();

void deleteMin(Comparable & minItem);

void makeEmpty();

void merge(BinomialQueue & rhs);

const BinomialQueue & operator = (const BinomialQueue & rhs);

private:

struct BinomialNode

{

Comparable element;

BinomialNode *leftChild;

BinomialNode *nextSibling;

BinomialNode(const Comparable & theElement,

BinomialNode *lt,BinomialNode *rt)

:element(theElement).leftchild(lt).nextSiblig(rt){}

};

enum {DEFAULT_TREES=1};

int currentSize;

vector theTrees;

int findMinIndex() const;

int capacity() const;

BinomialNode * combineTrees(BinomialNode *t1,BinomialNode *t2);

void makeEmpty(BinomialNode * & t);

BinomialNode * clone(BinomialNode * t) const;

};

11.在STL中,二叉堆是通过称为priority_queue的类模板实现的,该类模板可以在标准头文件queue中找到。STL 实现了一个最大堆而不是最小堆,因此所访问的项就是最大的项而不是最小的项。其键成员函数如下:

void push(const Object & x);

const Object & top() const;

void pop();

bool empty();

void clear();

感谢您的访问,希望对您有所帮助。

欢迎大家关注或收藏、评论或点赞。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值