堆的實現例程

#define MAX_HEAP_LEN 100 static int heap[MAX_HEAP_LEN]; static int heap_size = 0; ///堆中的元素個數 static void swap (int *a,int *b) { int temp=*a; *a=*b; *b=temp; } static void percolate_up(
相關文章
相關標籤/搜索