2020-11-24 19:08:55 +00:00
|
|
|
#include <stdio.h>
|
2020-11-24 19:18:19 +00:00
|
|
|
#include <stdlib.h>
|
|
|
|
#define MAX 20
|
2020-11-24 19:08:55 +00:00
|
|
|
int main() {
|
2020-11-24 19:18:19 +00:00
|
|
|
//int l = i * 2 + 1;
|
|
|
|
//int r = i * 2 + 2;
|
|
|
|
int i, t ,n;
|
|
|
|
int *a = calloc(MAX, sizeof(int));
|
|
|
|
int *m = calloc(MAX, sizeof(int));
|
|
|
|
scanf("%d", &n);
|
|
|
|
for (i = 0; i < n; i++) {
|
|
|
|
scanf("%d", &a[i]);
|
|
|
|
}
|
|
|
|
//m = buildmaxheap(a, n);
|
|
|
|
printf("The heap is\n");
|
|
|
|
for (t = 0; t < n; t++) {
|
|
|
|
printf("%d\n", m[t]);
|
|
|
|
}
|
2020-11-24 19:08:55 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|