码迷,mamicode.com
首页 > 编程语言 > 详细

优先队列C语言实现

时间:2015-08-04 00:44:11      阅读:343      评论:0      收藏:0      [点我收藏+]

标签:优先队列

优先队列利用堆实现,堆的实现在前面已经说过了,优先队列的一个重要的操作是:

1.  heap_max  O(1)  

2. heap_extract_max  O(lgn)

3. heap_increase_key  O(lgn)

4, heap_insert  O(lgn)

下面是C语言实现

#define MIN -100000

int heap_max(struct heap *h)
{
    return h->arr[1];
}

int heap_extract_max(struct heap *h)
{
    int max = h->arr[1];
    h->arr[1] = h->arr[h->size];
    h->size--;
    max_heapify(h, 1);
    return max;
}

void heap_increase_key(struct heap *h, int pos, int key)
{
    if (h->arr[pos] < key) {
        h->arr[pos] = key;
        while (pos > 1 && h->arr[pos] > h->arr[pos / 2]) {
            swap(&(h->arr[pos]), &(h->arr[pos / 2]));
            pos /= 2;
        }
    }
}

void heap_insert(struct heap * h, int key)
{
    //将最后一个元素后的元素设为无穷小,然后增加其键值
    h->arr[++(h->size)] = MIN;
    heap_increase_key(h, h->size, key);
}














版权声明:本文为博主原创文章,未经博主允许不得转载。

优先队列C语言实现

标签:优先队列

原文地址:http://blog.csdn.net/xianbt/article/details/47265489

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