数组中的元素 | A | B | C | D | E | F | G | H | I | J | |||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|
数组的下标 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 |
struct HeapStruct;
typedef struct HeapStruct *PriorityQueue;
struct HeapStruct
{
int Capacity;
int Size;
ElementType *Elements;
}
void Insert(ElementType X, PriorityQueue H)
{
int i;
if (IsFull(H))
{
Error("Priority queue is Full");
return;
}
for (i = ++H->Size; H->Element[i / 2] > X; i /= 2) H->Element[i] = H->Element[i / 2];
H->Element[i] = X;
}
原文:https://www.cnblogs.com/Anthony-ling/p/11366180.html