Aktualizovat du5/program.c

This commit is contained in:
Tomáš Vlček 2026-04-15 08:56:24 +00:00
parent 633812654d
commit 7703b877a8

View File

@ -1,96 +1,125 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <string.h> #include <string.h>
#define SIZE 128 #define SIZE_LINES 1024
#define SIZE 256
int main() typedef struct {
{ char text[SIZE];
char line[SIZE]; bool isAnswer;
char option1[SIZE]; int yes; //ekvivalent 'left' (alebo 'a' v pripade nasej ulohy)
char option2[SIZE]; int no; //ekvivalent 'right' (alebo 'n' v pripade nasej ulohy)
char question[SIZE]; } Node;
char question2[SIZE];
char answer = '0';
char answer2 = '0'; //'0' = ako keby 'NULL'/ absencia hodnoty
int fruitCount = 0;
bool isFirstQuestionRead = false;
bool isFirstOptionLoaded = false;
bool err = false;
option1[0] = '\0'; Node tree[SIZE];
option2[0] = '\0'; char lines[SIZE_LINES][SIZE];
question[0] = '\0';
question2[0] = '\0';
line[0] = '\0';
while (fgets(line, SIZE, stdin) != NULL) //pomocne premeny
int lineCount = 0;
int indexLine = 0;
int nodeCount = 0;
int answerCount = 0;
int invalidIndex = -1;
// vytvorii binarny strom na zakl. vstupu
//VRATI -> Bud cislo > 0 ALEBO stav '-1' (Neplatny index korenu) ALEBO -2
int buildATree() {
if (indexLine >= lineCount)
{ {
if (line[0] == '*') return -1;
{ }
fruitCount += 1;
//precita a ulozi odpoved na zaklade kontrolnej premeny char *line = lines[indexLine + 1];
if (!isFirstOptionLoaded) //pomocny index
{ int current = nodeCount++;
sscanf(line, "%s [^\n]", &option1);
isFirstOptionLoaded = true;
}
else
{
sscanf(line, "%s [^\n]", &option2);
}
}
else if (line[1] == '\n')
{
if (answer == '0')
{
answer = line[0];
}
else
{
answer2 = line[0];
}
if (line[0] == '*') {
tree[current].isAnswer = true;
strcpy(tree[current].text, line + 1);
tree[current].yes = invalidIndex;
tree[current].no = invalidIndex;
answerCount += 1;
return current;
}
tree[current].isAnswer = false;
strcpy(tree[current].text, line);
//rekurzivne vytvorii dalsie casti na zaklade toho, ci odpoved sa rovna anu
tree[current].yes = buildATree(); // 'a'
tree[current].no = buildATree(); // 'n'
return current;
}
void goThroughTheTree(int rootIndex)
{
//pomocne premeny
int current = rootIndex;
char input;
while (current != -1) {
if (tree[current].isAnswer) {
printf("*%s\n", tree[current].text);
printf("Koniec\n");
return;
} }
else if (!isFirstQuestionRead)
printf("%s\n", tree[current].text);
scanf(" %c", &input);
if (input == 'a')
{ {
sscanf(line, "%127[^\n]]", question); current = tree[current].yes;
isFirstQuestionRead = true; }
// strcat(question, "?"); else if (input == 'n')
{
current = tree[current].no;
} }
else else
{ {
sscanf(line, "%127[^\n]]", question2); printf("Nerozumiem.\n");
return;
} }
} }
}
if (answer == '0') { err = true; } int main()
{
char buffer[SIZE];
// Load input
while (fgets(buffer, SIZE, stdin))
{
if (strcmp(buffer, "\n") == 0)
{
break;
}
for (int i = 0; i < SIZE, i++)
{
if (buffer[i] == '\n')
{
buffer[i] = '\0';
}
}
// buffer[strcspn(buffer, "\n")] = '\0';
strcpy(lines[lineCount + 1], buffer);
}
int root = buildTree();
if (root == -1 || indexLine != lineCount) {
printf("Koniec vstupu.\n");
return 0;
}
printf("Expert z bufetu to vie.\n"); printf("Expert z bufetu to vie.\n");
printf("Pozna %d druhov ovocia a zeleniny.\n", fruitCount); printf("Pozna %d druhov ovocia a zeleniny.\n", answerCount);
printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n"); printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n");
printf("%s\n", question);
if (question2[0] != '\0') {printf("%s\n", question2); } goThroughTheTree(root);
if (answer == 'a')
{
printf("%s\n", option1);
}
else if (answer == 'n')
{
printf("%s\n", option2);
}
else if (answer == '0')
{
printf("Koniec vstupu\n");
}
else //v pripade, ze nespravny vstup bol zadany uzivatelom
{
printf("Nerozumiem\n");
err = true;
}
if (!err) { printf("Koniec\n"); }
return 0; return 0;
} }