手寫堆_C++

  通常主程序中拿堆頂元素html

1     x=h[1];
2     h[1]=h[top--];
3     down(1);

  在堆尾加入元素spa

1     h[++top]=x;
2     up(top);

  上浮下沉操做code

 1 inline void up(int x)
 2 {
 3     if (x==1) return;
 4     if (h[x>>1]>h[x])
 5     {
 6         swap(h[x>>1],h[x]);
 7         up(x>>1);
 8     }
 9 }
10 inline void down(int x)
11 {
12     x<<=1;
13     if (x>top) return;
14     if (x<top&&h[x+1]<h[x]) x++;
15     if (h[x>>1]>h[x])
16     {
17         swap(h[x>>1],h[x]);
18         down(x);
19     }
20 }

 

 

 

版權全部,轉載請聯繫做者,違者必究htm

聯繫方式:http://www.cnblogs.com/hadilo/p/5932395.htmlblog

相關文章
相關標籤/搜索