test
This commit is contained in:
parent
d9b43e5833
commit
e53884efea
@ -0,0 +1,80 @@
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
typedef struct Uzol {
|
||||
char *text;
|
||||
struct Uzol *ano;
|
||||
struct Uzol *nie;
|
||||
} Uzol;
|
||||
|
||||
int pocet_tovarov = 0;
|
||||
|
||||
Uzol* vytvor_uzol(const char *text) {
|
||||
Uzol *uzol = (Uzol *)malloc(sizeof(Uzol));
|
||||
uzol->text = strdup(text);
|
||||
uzol->ano = NULL;
|
||||
uzol->nie = NULL;
|
||||
return uzol;
|
||||
}
|
||||
|
||||
Uzol* nacitaj_strom(FILE *subor) {
|
||||
char riadok[256];
|
||||
if (fgets(riadok, sizeof(riadok), subor) == NULL || riadok[0] == '\n') {
|
||||
return NULL;
|
||||
}
|
||||
riadok[strcspn(riadok, "\n")] = '\0';
|
||||
if (riadok[0] == '*') {
|
||||
pocet_tovarov++;
|
||||
return vytvor_uzol(riadok + 1);
|
||||
}
|
||||
Uzol *uzol = vytvor_uzol(riadok);
|
||||
uzol->ano = nacitaj_strom(subor);
|
||||
uzol->nie = nacitaj_strom(subor);
|
||||
return uzol;
|
||||
}
|
||||
|
||||
void spusti_system(Uzol *uzol) {
|
||||
while (uzol != NULL) {
|
||||
if (uzol->ano == NULL && uzol->nie == NULL) {
|
||||
printf("* %s\nKoniec\n", uzol->text);
|
||||
return;
|
||||
}
|
||||
printf("%s\n", uzol->text);
|
||||
printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n");
|
||||
|
||||
char odpoved;
|
||||
if (scanf(" %c", &odpoved) != 1 || (odpoved != 'a' && odpoved != 'n')) {
|
||||
printf("Chyba: Nesprávny vstup.\n");
|
||||
return;
|
||||
}
|
||||
uzol = (odpoved == 'a') ? uzol->ano : uzol->nie;
|
||||
}
|
||||
}
|
||||
|
||||
void uvolni_strom(Uzol *uzol) {
|
||||
if (uzol == NULL) return;
|
||||
uvolni_strom(uzol->ano);
|
||||
uvolni_strom(uzol->nie);
|
||||
free(uzol->text);
|
||||
free(uzol);
|
||||
}
|
||||
|
||||
int main() {
|
||||
FILE *subor = fopen("rules.txt", "r");
|
||||
if (!subor) {
|
||||
printf("Chyba: Nepodarilo sa otvoriť súbor s pravidlami.\n");
|
||||
return 1;
|
||||
}
|
||||
Uzol *koren = nacitaj_strom(subor);
|
||||
fclose(subor);
|
||||
|
||||
if (!koren) {
|
||||
printf("Chyba: Nepodarilo sa načítať bázu pravidiel.\n");
|
||||
return 1;
|
||||
}
|
||||
printf("Expert z bufetu to vie.\nPozna %d druhov ovocia a zeleniny.\n", pocet_tovarov);
|
||||
spusti_system(koren);
|
||||
uvolni_strom(koren);
|
||||
return 0;
|
||||
}
|
Loading…
Reference in New Issue
Block a user