Update a4/program.c
This commit is contained in:
parent
f8cf8190dc
commit
810166a4f6
13
a4/program.c
13
a4/program.c
@ -43,11 +43,7 @@ int main() {
|
|||||||
int n = 0;
|
int n = 0;
|
||||||
|
|
||||||
// Načítanie vstupu
|
// Načítanie vstupu
|
||||||
// printf("Zadajte čísla oddelené medzerou: ");
|
|
||||||
// if (!fgets(input, sizeof(input), stdin)) {
|
|
||||||
// printf("Chyba pri načítaní vstupu.\n");
|
|
||||||
// return 1;
|
|
||||||
// }
|
|
||||||
|
|
||||||
// Parsovanie vstupu
|
// Parsovanie vstupu
|
||||||
char *token = strtok(input, " ");
|
char *token = strtok(input, " ");
|
||||||
@ -56,6 +52,13 @@ int main() {
|
|||||||
token = strtok(NULL, " ");
|
token = strtok(NULL, " ");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Ak je na vstupe len jedno číslo
|
||||||
|
if (n == 1) {
|
||||||
|
printf("Je to taka kopa:\n");
|
||||||
|
printf("%d\n", arr[0]);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
// Overenie, či je to binárna kopa
|
// Overenie, či je to binárna kopa
|
||||||
if (is_min_heap(arr, n)) {
|
if (is_min_heap(arr, n)) {
|
||||||
printf("Je to taka kopa:\n");
|
printf("Je to taka kopa:\n");
|
||||||
|
Loading…
Reference in New Issue
Block a user