usaa24/cv7/program.c

119 lines
3.3 KiB
C
Raw Normal View History

2024-11-06 08:44:29 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#define MAX_LINE_LENGTH 100
typedef struct Node {
char text[MAX_LINE_LENGTH];
struct Node *yes;
struct Node *no;
} Node;
Node* create_node(const char* text) {
Node *node = (Node*)malloc(sizeof(Node));
if (!node) {
2024-11-06 08:53:54 +00:00
fprintf(stderr, "Memory allocation error.\n");
2024-11-06 08:44:29 +00:00
exit(1);
}
strncpy(node->text, text, MAX_LINE_LENGTH);
node->yes = NULL;
node->no = NULL;
return node;
}
Node* parse_knowledge_base(FILE *file) {
char line[MAX_LINE_LENGTH];
2024-11-08 09:13:34 +00:00
if (!fgets(line, sizeof(line), file) || line[0] == '\n') {
2024-11-06 08:44:29 +00:00
return NULL;
}
2024-11-08 09:13:34 +00:00
line[strcspn(line, "\n")] = 0; // Удалить символ новой строки
2024-11-06 08:44:29 +00:00
2024-11-08 09:13:34 +00:00
Node *node = NULL;
2024-11-06 08:44:29 +00:00
if (line[0] == '*') {
2024-11-08 09:13:34 +00:00
node = create_node(line + 1); // Создаём конечный узел (ответ)
2024-11-06 08:44:29 +00:00
} else {
2024-11-08 09:13:34 +00:00
node = create_node(line); // Создаём узел с вопросом
node->yes = parse_knowledge_base(file); // Рекурсивное создание поддерева для "да"
node->no = parse_knowledge_base(file); // Рекурсивное создание поддерева для "нет"
2024-11-06 08:44:29 +00:00
}
2024-11-08 09:13:34 +00:00
return node;
2024-11-06 08:44:29 +00:00
}
int count_products(Node *node) {
if (!node) return 0;
2024-11-08 09:13:34 +00:00
if (!node->yes && !node->no) return 1; // Если это ответ, возвращаем 1
2024-11-06 08:44:29 +00:00
return count_products(node->yes) + count_products(node->no);
}
2024-11-08 09:13:34 +00:00
void run_expert_system(Node *node, FILE *input) {
2024-11-06 08:44:29 +00:00
while (node) {
2024-11-08 09:13:34 +00:00
// Проверка, если это листовой узел (ответ)
2024-11-07 13:57:36 +00:00
if (!node->yes && !node->no) {
2024-11-08 08:50:36 +00:00
printf("*%s\n", node->text); // Выводим ответ с звездочкой
2024-11-07 13:35:10 +00:00
printf("Koniec\n");
2024-11-07 13:37:47 +00:00
return;
2024-11-06 10:56:39 +00:00
}
2024-11-08 09:13:34 +00:00
printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n");
printf("%s\n", node->text);
2024-11-06 08:44:29 +00:00
char answer;
2024-11-08 09:13:34 +00:00
if (fscanf(input, " %c", &answer) != 1) {
2024-11-08 08:50:36 +00:00
printf("Koniec\n"); // Некорректный ввод
2024-11-07 13:35:10 +00:00
return;
2024-11-06 09:16:26 +00:00
}
2024-11-06 09:31:09 +00:00
2024-11-08 09:13:34 +00:00
// Переход по дереву на основе ответа
2024-11-06 08:44:29 +00:00
if (answer == 'a') {
node = node->yes;
} else if (answer == 'n') {
node = node->no;
} else {
2024-11-08 08:50:36 +00:00
printf("Koniec\n"); // Некорректный ввод
return;
}
2024-11-06 08:44:29 +00:00
}
}
2024-11-08 09:13:34 +00:00
2024-11-06 09:02:55 +00:00
void free_tree(Node *node) {
if (node) {
free_tree(node->yes);
free_tree(node->no);
free(node);
}
}
2024-11-06 08:44:29 +00:00
int main() {
FILE *file = fopen("knowledge_base.txt", "r");
if (!file) {
2024-11-08 09:13:34 +00:00
perror("Failed to open the knowledge base file");
return 1;
2024-11-06 08:44:29 +00:00
}
Node *root = parse_knowledge_base(file);
if (!root) {
2024-11-06 09:02:55 +00:00
printf("Báza znalostí sa nedá načítať.\n");
2024-11-08 09:13:34 +00:00
fclose(file);
2024-11-06 08:44:29 +00:00
return 1;
}
2024-11-06 11:06:15 +00:00
printf("Expert z bufetu to vie.\n");
2024-11-06 08:44:29 +00:00
int product_count = count_products(root);
2024-11-06 09:02:55 +00:00
printf("Pozna %d druhov ovocia a zeleniny.\n", product_count);
2024-11-08 09:13:34 +00:00
// Пропуск пустой строки, которая разделяет базу знаний и ответы
char line[MAX_LINE_LENGTH];
while (fgets(line, sizeof(line), file) && line[0] != '\n');
run_expert_system(root, file);
2024-11-06 08:44:29 +00:00
2024-11-06 09:02:55 +00:00
free_tree(root);
2024-11-08 09:13:34 +00:00
fclose(file);
2024-11-06 08:44:29 +00:00
return 0;
}