码迷,mamicode.com
首页 > 其他好文 > 详细

algorithm ch6 priority queque

时间:2015-03-28 23:13:23      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:

堆数据结构的一个重要用处就是:最为高效的优先级队列。优先级队列分为最大优先级队列和最小优先级队列,其中最大优先级队列的一个应用实在一台分时计算机上进行作业的调度。当用堆来实现优先级队列时,需要在队中的每个元素里存储对应的应用对象句柄(handle)。这里对象柄用数组下标表示,因为在堆操作中,堆元素会改变在数组中的位置,所以具体实现中为了重新定义堆元素,我们需要更新应用对象中的数组下标。简单的实现代码如下:

int  HeapMaximum(int a[], int &heapSize)
{
    return a[1];
}
int HeapExtractMax(int a[], int &iHeapSize)
{
    if(iHeapSize < 1)
    {
        cout << "heap underflow." << endl;
    }
    int iMax = a[1];
    a[1] = a[iHeapSize];
    iHeapSize = iHeapSize - 1;
    MaxHeapify(a, 1, iHeapSize);
    return iMax;
}
void HeapIncreaseKey(int a[], int iPos, int iKey)
{
    if(iKey < a[iPos])
    {
        cout << "new key is smaller than current key." << endl;
        return;
    }
    a[iPos] = iKey;
    while(iPos > 1 && a[parent(iPos)] < a[iPos])
    {
        swap(a[iPos], a[parent(iPos)]);
        iPos = parent(iPos);
    }
}
void MaxHeapInsert(int a[], int iKey, int &iHeapSize)
{
    iHeapSize += 1;
    a[iHeapSize] = -INT_MAX;
    HeapIncreaseKey(a, iHeapSize, iKey);
}


同时还找到一份不错的学习代码http://www.cnblogs.com/Anker/archive/2013/01/23/2873951.html

好好学习,总会有收获。

algorithm ch6 priority queque

标签:

原文地址:http://www.cnblogs.com/bestwangjie/p/4374897.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!