a3 (prednaska)

This commit is contained in:
Oleksandr Hryshchenko 2021-11-25 23:17:54 +00:00
parent 213a63cecf
commit 5cbe092da7

View File

@ -9,7 +9,7 @@ struct heap {
int size;
int capacity;
};
// Výpočet rodičovského uzla
int parent(int i){
return (i -1) / 2;