Update cv7/program.c

This commit is contained in:
Viktor Daniv 2024-11-15 00:46:23 +00:00
parent 3717629634
commit 77b8d63418

View File

@ -1,103 +1,74 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <assert.h>
// Štruktúra pre uzol v binárnom strome #define SIZE 256
typedef struct Node {
char text[100];
int is_answer; // 1 pre odpoveď, 0 pre otázku
struct Node *yes_branch;
struct Node *no_branch;
} Node;
// Vytvára nový uzol s textom a typom (odpoveď alebo otázka) // Struktúra uzla
Node *create_node(const char *text, int is_answer) { typedef struct tree {
Node *node = malloc(sizeof(Node)); char value[SIZE];
if (!node) { struct tree* left;
printf("Chyba: Nepodarilo sa alokovať pamäť.\n"); struct tree* right;
exit(1); } Tree;
// Funkcia na vytvorenie nového uzla
Tree* create_node(const char* value) {
Tree* node = malloc(sizeof(Tree));
if (node) {
strncpy(node->value, value, SIZE);
node->left = NULL;
node->right = NULL;
} }
strcpy(node->text, text);
node->is_answer = is_answer;
node->yes_branch = NULL;
node->no_branch = NULL;
return node; return node;
} }
// Funkcia na načítanie bázy pravidiel do binárneho stromu // Funkcia na načítanie stromu
Node *load_rules(FILE *file, int *num_answers) { Tree* read_tree() {
char line[100]; char buffer[SIZE];
if (!fgets(line, sizeof(line), file) || line[0] == '\n') { memset(buffer, 0, SIZE);
return NULL; // Prázdny riadok, koniec pravidiel
// Čítanie riadku
if (!fgets(buffer, SIZE, stdin)) {
return NULL;
} }
int is_answer = line[0] == '*'; // Odstránenie znaku nového riadku
char *text = is_answer ? line + 1 : line; buffer[strcspn(buffer, "\n")] = 0;
text[strcspn(text, "\n")] = 0; // Odstráni znak nového riadka
Node *node = create_node(text, is_answer); if (buffer[0] == '\0') {
if (is_answer) { return NULL; // Prázdny riadok znamená koniec
(*num_answers)++; }
Tree* node = create_node(buffer);
// Ak ide o odpoveď, nečítame podstromy
if (buffer[0] == '*') {
return node; return node;
} }
node->yes_branch = load_rules(file, num_answers); // Čítanie podstromov (ľavý a pravý uzol)
node->no_branch = load_rules(file, num_answers); node->left = read_tree();
node->right = read_tree();
return node; return node;
} }
// Funkcia na kladenie otázok používateľovi // Funkcia na zničenie stromu
void ask_questions(Node *node) { void destroy_tree(Tree* tree) {
while (node) { if (tree) {
printf("%s\n", node->text); destroy_tree(tree->left);
if (node->is_answer) { destroy_tree(tree->right);
printf("Koniec.\n"); free(tree);
return;
}
char answer;
printf("Odpovedajte 'a' pre prvú možnosť alebo 'n' pre druhú možnosť: ");
scanf(" %c", &answer);
if (answer == 'a') {
node = node->yes_branch;
} else if (answer == 'n') {
node = node->no_branch;
} else {
printf("Neplatná odpoveď, koniec.\n");
return;
}
} }
} }
// Uvoľní pamäť pre všetky uzly v binárnom strome // Funkcia na preorder výpis stromu
void free_tree(Node *node) { void print_tree(Tree* tree, int offset) {
if (node) { if (tree == NULL) return;
free_tree(node->yes_branch); for (int i = 0; i < offset; i++) {
free_tree(node->no_branch); printf(" ");
free(node);
} }
} printf("%s\n", tree->value);
print_tree(tree->left, offset + 3);
int main() { print_tree(tree->right, offset + 3);
FILE *file = fopen("rules.txt", "r");
if (!file) {
printf("Chyba: Nepodarilo sa otvoriť súbor s pravidlami.\n");
return 1;
}
int num_answers = 0;
Node *root = load_rules(file, &num_answers);
fclose(file);
if (!root) {
printf("Chyba: Nepodarilo sa načítať bázu pravidiel.\n");
return 1;
}
printf("Pozná %d druhov ovocia a zeleniny.\n", num_answers);
ask_questions(root);
free_tree(root);
return 0;
} }