fork download
  1. // heap-ki
  2.  
  3. #include <stdio.h>
  4. #include <stdlib.h>
  5.  
  6. #define height 4
  7. #define MAX (1<<height) //ビットシフト演算 2^height と同じ
  8.  
  9. int t[MAX+1]; //配列外アクセス防止のためのダミーで+1
  10. int sz = 0;
  11.  
  12. void swap(int *x, int *y){
  13. int tmp = *x;
  14. *x = *y;
  15. *y = tmp;
  16. }
  17.  
  18. void initTree(int n){
  19. int i;
  20. for(i=0;i<MAX;i++){
  21. t[i] = -1;
  22. }
  23. }
  24.  
  25. void printA(){
  26. int i;
  27. for(i=1;i<=sz;i++) printf("%d ",t[i]);
  28. printf("\n");
  29. }
  30.  
  31. void printT(int i){
  32. int x = i;
  33. while(x/2!=0){
  34. printf(" ");
  35. x/=2;
  36. }
  37. printf("%d\n",t[i]);
  38. }
  39.  
  40. int goP(int i){
  41. if(i/2 == 0) return 0;
  42. else return i/2;
  43. }
  44.  
  45. int goL(int i){
  46. if(2*i >= MAX) return 0;
  47. else return 2*i;
  48. }
  49.  
  50. int goR(int i){
  51. if(2*i+1 >= MAX) return 0;
  52. else return 2*i+1;
  53. }
  54.  
  55. void preOrder(int i){
  56. if(t[i] == -1) return;
  57. printT(i);
  58. preOrder(goL(i));
  59. preOrder(goR(i));
  60. }
  61.  
  62. void inOrder(int i){
  63. if(t[i] == -1) return;
  64. inOrder(goL(i));
  65. printT(i);
  66. inOrder(goR(i));
  67. }
  68.  
  69. void postOrder(int i){
  70. if(t[i] == -1) return;
  71. postOrder(goL(i));
  72. postOrder(goR(i));
  73. printT(i);
  74. }
  75.  
  76. void insBT(int x){
  77. int k,i = 1;
  78. for(k=0;k<height;k++){
  79. if(t[i]==-1){
  80. t[i] = x;
  81. sz++;
  82. return;
  83. }
  84. if(x < t[i]) i = goL(i);
  85. else i = goR(i);
  86. }
  87. printf("Error : too high -> %d\n",x);
  88. }
  89.  
  90. //先頭の要素を取り出す
  91. //ダウンヒープ
  92. int popHeap(){
  93. int k=t[1];
  94. t[1]=t[sz];
  95. t[sz]=-1;
  96. sz--;
  97.  
  98. int i=1;
  99. while(i<=sz){
  100. int l, r, fox;
  101. l=goL(i);
  102. r=goR(i);
  103. fox=i;
  104.  
  105. if(l<sz && t[l]>t[fox]){
  106. fox=l;
  107. }
  108. if(r<sz && t[r]>t[fox]){
  109. fox=r;
  110. }
  111. if(fox!=i){
  112. swap(&t[i], &t[fox]);
  113. i=fox;
  114. }
  115. else break;
  116. }
  117. return k;
  118. }
  119.  
  120. //末尾に要素を追加する
  121. //アップヒープ
  122. void pushHeap(int x){
  123. int i=++sz;
  124. t[i]=x;
  125.  
  126. while(i>1 && t[i]>t[goP(i)]){
  127. swap(&t[i], &t[goP(i)]);
  128. i=goP(i);
  129. }
  130.  
  131. }
  132.  
  133. int main(void){
  134. int i,x,n;
  135. scanf("%d",&n);
  136. // 木の初期化
  137. initTree(n);
  138. for(i=0;i<n;i++){
  139. scanf("%d",&t[i+1]);
  140. }
  141. sz = n;
  142. // 中間順で表示
  143. inOrder(1);
  144.  
  145. // pop
  146. int a=popHeap();
  147. printf("pop : %d\n",a);
  148. inOrder(1);
  149.  
  150. a = popHeap();
  151. printf("pop : %d\n",a);
  152.  
  153. inOrder(1);
  154.  
  155. printf("push : 100\n");
  156. pushHeap(100);
  157. inOrder(1);
  158.  
  159. printf("push : 30\n");
  160. pushHeap(30);
  161. inOrder(1);
  162. return 0;
  163. }
  164.  
Success #stdin #stdout 0s 5284KB
stdin
12
89 34 55 13 16 21 32 2 3 4 5 8
stdout
      2
    13
      3
  34
      4
    16
      5
89
      8
    21
  55
    32
pop : 89
      2
    13
      3
  34
      4
    16
      5
55
    21
  32
    8
pop : 55
      2
    13
      3
  16
      4
    5
34
    21
  32
    8
push : 100
      2
    13
      3
  34
      4
    16
      5
100
    21
  32
    8
push : 30
      2
    13
      3
  34
      4
    16
      5
100
      21
    30
  32
    8