Update cv7/program.c

This commit is contained in:
Marat Izmailov 2024-11-14 23:56:29 +00:00
parent b14e064578
commit b37dd73112

View File

@ -2,94 +2,108 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#define SIZE 256 #define MAX_SIZE 256
// Структура узла бинарного дерева struct node {
struct strom { char value[MAX_SIZE];
char otazka[SIZE]; struct node *left;
struct strom* ano; struct node *right;
struct strom* nie; int id;
}; };
// Функция для чтения базы правил из стандартного ввода struct node* read_tree(int *id_counter) {
struct strom* nacitaj_strom() { char line[MAX_SIZE];
char buffer[SIZE];
if (!fgets(buffer, SIZE, stdin) || buffer[0] == '\n') { if (fgets(line, MAX_SIZE, stdin) == NULL || line[0] == '\n') {
return NULL; // Конец базы данных или пустая строка return NULL;
} }
struct strom* uzol = malloc(sizeof(struct strom)); struct node *new_node = (struct node*)malloc(sizeof(struct node));
if (!uzol) { if (new_node == NULL) {
printf("Chyba: nedostatok pamäte.\n"); return NULL;
exit(1);
}
strcpy(uzol->otazka, buffer);
if (buffer[0] == '*') {
uzol->ano = uzol->nie = NULL; // Это лист (ответ)
} else {
uzol->ano = nacitaj_strom(); // Чтение ветви для "да"
uzol->nie = nacitaj_strom(); // Чтение ветви для "нет"
} }
return uzol; strcpy(new_node->value, line);
new_node->id = (*id_counter)++;
if (line[0] != '*') {
new_node->left = read_tree(id_counter);
new_node->right = read_tree(id_counter);
}
return new_node;
} }
// Функция для освобождения памяти дерева void free_tree(struct node *root) {
void znic_strom(struct strom* uzol) { if (root == NULL) return;
if (uzol) { free_tree(root->left);
znic_strom(uzol->ano); free_tree(root->right);
znic_strom(uzol->nie); free(root);
free(uzol);
}
} }
// Функция для взаимодействия с пользователем (прохождение дерева) int count_items(struct node *root) {
void spusti_expert_system(struct strom* uzol) { if (root == NULL) return 0;
if (!uzol) return; if (root->left == NULL && root->right == NULL) return 1;
return count_items(root->left) + count_items(root->right);
}
printf("%s", uzol->otazka); void start_system(struct node *current_node) {
if (!uzol->ano && !uzol->nie) { if (current_node == NULL) return;
printf("Koniec\n"); // Окончательный ответ с сообщением об окончании
return;
}
char odpoved; int blank_lines = 0;
if (scanf(" %c", &odpoved) != 1 || (odpoved != 'a' && odpoved != 'n')) { int is_first_prompt = 1;
printf("Nerozumiem\n");
spusti_expert_system(uzol); // Повторный вызов для текущего вопроса при некорректном ответе while (current_node != NULL) {
} else { if (current_node->left == NULL && current_node->right == NULL) {
if (odpoved == 'a') { printf("%s", current_node->value);
spusti_expert_system(uzol->ano); printf("Koniec\n");
return;
}
if (is_first_prompt) {
printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n");
is_first_prompt = 0;
}
printf("%s", current_node->value);
char response;
int result = scanf(" %c", &response);
if (result == EOF || (response == '\n' && ++blank_lines >= 2)) {
printf("Koniec vstupu\n");
return;
}
if (response == 'a') {
blank_lines = 0;
current_node = current_node->left;
} else if (response == 'n') {
blank_lines = 0;
current_node = current_node->right;
} else { } else {
spusti_expert_system(uzol->nie); printf("Nerozumiem\n");
return;
} }
} }
} }
// Функция для подсчета листьев дерева (окончательных ответов)
int pocet_listov(struct strom* uzol) {
if (!uzol) return 0;
if (!uzol->ano && !uzol->nie) return 1;
return pocet_listov(uzol->ano) + pocet_listov(uzol->nie);
}
// Главная функция
int main() { int main() {
struct strom* databaza_znalosti = nacitaj_strom(); int counter = 0;
struct node *root = read_tree(&counter);
if (!databaza_znalosti) { printf("Expert z bufetu to vie.\n");
printf("Chyba: databáza je prázdna alebo nesprávne formátovaná.\n");
return 1; if (root == NULL) {
printf("Chybna databaza\n");
return 0;
} }
int pocet_tovarov = pocet_listov(databaza_znalosti); int item_count = count_items(root);
printf("Expert z bufetu to vie.\n"); printf("Pozna %d druhov ovocia a zeleniny.\n", item_count);
printf("Pozna %d druhov ovocia a zeleniny.\n", pocet_tovarov);
printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n");
spusti_expert_system(databaza_znalosti); start_system(root);
znic_strom(databaza_znalosti); free_tree(root);
return 0; return 0;
} }