Изменить 'a3/program.c'

This commit is contained in:
Maksym Malko 2020-12-04 06:38:10 +00:00
parent 2baeb1743f
commit 0071dfada2

View File

@ -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);
}
}