优先队列(缺)

简介: #include typedef int ElementType;struct HeapStruct;typedef struct HeapStruct *PriorityQueue;PriorityQueue ...
#include <stdio.h>
typedef int ElementType;

struct HeapStruct;
typedef struct HeapStruct *PriorityQueue;

PriorityQueue Initialize( int MaxElements );
void Destroy( PriorityQueue H );
void MakeEmpty( PriorityQueue H );
void Insert( ElementType X, PriorityQueue H );
ElementType DeleteMin( PriorityQueue H );
ElementType FindMin( PriorityQueue H);
int IsEmpty( PriorityQueue H );
int IsFull( PriorityQueue H );

struct HeapStruct
{
    int Capacity;
    int Size;
    ElementType *Elements;
};


int main()
{
    return 0;
}

PriorityQueue
Initialize( int MaxElements)
{
    PriorityQueue H;

    if( MaxElements < MinPQSize )
        Error( "Priority queue size is too small");

    H = malloc( sizeof( struct HeapStruct ) );
    if( H == NULL )
        FatalError( "Out of space!!!");

    H->Elements = malloc( ( MaxElements + 1 )
                            * sizeof( ElementType) );

    if( H->Elements == NULL )
        FatalError( "Out of space!!!");

    H->Capacity = MaxElements;
    H->Size = 0;
    H->Elements[ 0 ] = MinData;

    return H;
}

/* H->Element [0] is a sentinel 哨兵*/
void 
Insert(ElementType X, PriorityQueue H)
{
    int i;

    if( IsFull( H ) )
    {
        Error("Priority queue is full");
        return;
    }

    for( i = ++H->Size; H->Elements[ i / 2] > X; i /=2 )
        H->Elements[ i ] = H->Elements[ i / 2];
    H->Elements[ i ] = X;
}

ElementType
DeleteMin( PriorityQueue H)
{
    int i, child;
    ElementType MinElement, LastElement;

    if( IsEmpty( H ))
    {
        Error( "Priority queue is empty ");
        return H->Elements[ 0 ];
    }
    MinElement = H->Elements[ 1 ];
    LastElement = H->Elements[ H->Size-- ];

    for( i = 1; i * 2 <= H->Size; i = Child)
    {
        /* Find smaller child*/
        Child = i * 2;
        if(Child != H->Size && H->Elements[ Child + 1 ]
                            < H->Capacity[ Child])
            Child++;

        if( LastElement > H->Elements[ Child ])
            H->Elements[ i ] = H->Elements[ Child ];
        else
            break;
    }
    H->Elements[ i ] = LastElement;
    return MinElement;
}





目录
相关文章
|
算法 索引
带你拿捏链表
带你拿捏链表
130 0
|
8月前
|
存储 Java C语言
剑指offer(牛客)——从尾到头打印链表
剑指offer(牛客)——从尾到头打印链表
48 1
|
8月前
|
Java C语言
剑指offer(牛客)——合并两个排序的链表
剑指offer(牛客)——合并两个排序的链表
52 1
|
8月前
【一刷《剑指Offer》】面试题 5:从尾到头打印链表
【一刷《剑指Offer》】面试题 5:从尾到头打印链表
|
8月前
【一刷《剑指Offer》】面试题 17:合并两个排序的链表
【一刷《剑指Offer》】面试题 17:合并两个排序的链表
|
8月前
【一刷《剑指Offer》】面试题 7:用两个栈实现队列
【一刷《剑指Offer》】面试题 7:用两个栈实现队列
|
8月前
|
人工智能 Java C++
每日一题《剑指offer》链表篇之合并k个已排序的链表
每日一题《剑指offer》链表篇之合并k个已排序的链表
103 0
每日一题《剑指offer》链表篇之合并k个已排序的链表
|
C语言
[链表OJ题 8] 用栈实现队列,没想到你小子的基础这么好,这么快就做对了
[链表OJ题 8] 用栈实现队列,没想到你小子的基础这么好,这么快就做对了
leetcode-每日一题899. 有序队列(思维题)
当k = 1时,我们每次取 i 个首字符并将其移动到字符串末尾,对比找最小的字典序字符串即可
94 0
leetcode-每日一题899. 有序队列(思维题)
回溯法、另辟蹊径法 求数组的全排序
回溯法、另辟蹊径法 求数组的全排序
85 0
回溯法、另辟蹊径法 求数组的全排序