Изменить 'a3/program.c'
This commit is contained in:
parent
2baeb1743f
commit
0071dfada2
@ -70,8 +70,8 @@ void add(struct heap* h,int value){
|
||||
// Pozrieme na jeho rodiča
|
||||
int p = parent(i);
|
||||
|
||||
while(a[i] < a[p]) { // i 0 — мы в корне
|
||||
swap(h->array,a[i], a[p]);
|
||||
while(h->array[i] < h->array[p]) { // i 0 — мы в корне
|
||||
swap(h->array,i, p);
|
||||
i = parent(i);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user