hz
This commit is contained in:
parent
7f42e142a0
commit
d767e19e40
@ -10,10 +10,11 @@ typedef struct Node {
|
|||||||
struct Node *no;
|
struct Node *no;
|
||||||
} Node;
|
} Node;
|
||||||
|
|
||||||
|
// Создает узел с текстом
|
||||||
Node* create_node(const char* text) {
|
Node* create_node(const char* text) {
|
||||||
Node *node = (Node*)malloc(sizeof(Node));
|
Node *node = (Node*)malloc(sizeof(Node));
|
||||||
if (!node) {
|
if (!node) {
|
||||||
fprintf(stderr, "Memory allocation error.\n");
|
fprintf(stderr, "Ошибка выделения памяти.\n");
|
||||||
exit(1);
|
exit(1);
|
||||||
}
|
}
|
||||||
strncpy(node->text, text, MAX_LINE_LENGTH);
|
strncpy(node->text, text, MAX_LINE_LENGTH);
|
||||||
@ -22,50 +23,45 @@ Node* create_node(const char* text) {
|
|||||||
return node;
|
return node;
|
||||||
}
|
}
|
||||||
|
|
||||||
Node* parse_knowledge_base(FILE *file) {
|
// Рекурсивно создает дерево из базы знаний, хранящейся в массиве строк
|
||||||
char line[MAX_LINE_LENGTH];
|
Node* parse_knowledge_base(char lines[][MAX_LINE_LENGTH], int *index, int line_count) {
|
||||||
|
if (*index >= line_count || lines[*index][0] == '\0') {
|
||||||
// Считываем строку из файла
|
|
||||||
if (!fgets(line, sizeof(line), file) || line[0] == '\n') {
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Удаляем символ новой строки
|
char *line = lines[*index];
|
||||||
line[strcspn(line, "\n")] = 0;
|
(*index)++; // Переход к следующей строке
|
||||||
|
|
||||||
// Создаем узел, проверяем, является ли это ответом (начинается с '*')
|
|
||||||
Node *node = NULL;
|
Node *node = NULL;
|
||||||
if (line[0] == '*') {
|
if (line[0] == '*') {
|
||||||
node = create_node(line + 1); // Создаем узел-ответ
|
node = create_node(line + 1); // Узел с ответом
|
||||||
} else {
|
} else {
|
||||||
node = create_node(line); // Создаем узел-вопрос
|
node = create_node(line); // Узел с вопросом
|
||||||
node->yes = parse_knowledge_base(file); // Переход для ответа "да"
|
node->yes = parse_knowledge_base(lines, index, line_count); // Ветка "да"
|
||||||
node->no = parse_knowledge_base(file); // Переход для ответа "нет"
|
node->no = parse_knowledge_base(lines, index, line_count); // Ветка "нет"
|
||||||
}
|
}
|
||||||
return node;
|
return node;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Подсчитывает количество конечных узлов (продуктов) в дереве
|
||||||
int count_products(Node *node) {
|
int count_products(Node *node) {
|
||||||
if (!node) return 0;
|
if (!node) return 0;
|
||||||
if (!node->yes && !node->no) return 1;
|
if (!node->yes && !node->no) return 1; // Листовой узел - это продукт
|
||||||
return count_products(node->yes) + count_products(node->no);
|
return count_products(node->yes) + count_products(node->no);
|
||||||
}
|
}
|
||||||
|
|
||||||
void run_expert_system(Node *node, FILE *input) {
|
// Запускает систему, задавая вопросы и ожидая ответы
|
||||||
|
void run_expert_system(Node *node) {
|
||||||
while (node) {
|
while (node) {
|
||||||
if (!node->yes && !node->no) {
|
if (!node->yes && !node->no) { // Достигнут конечный узел
|
||||||
printf("*%s\n", node->text);
|
printf("*%s\n", node->text);
|
||||||
printf("Koniec\n");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n");
|
|
||||||
printf("%s\n", node->text);
|
printf("%s\n", node->text);
|
||||||
|
|
||||||
char answer;
|
char answer;
|
||||||
if (fscanf(input, " %c", &answer) != 1) {
|
if (scanf(" %c", &answer) != 1) {
|
||||||
printf("Koniec\n");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -74,13 +70,12 @@ void run_expert_system(Node *node, FILE *input) {
|
|||||||
} else if (answer == 'n') {
|
} else if (answer == 'n') {
|
||||||
node = node->no;
|
node = node->no;
|
||||||
} else {
|
} else {
|
||||||
printf("Nespravny vstup.\nKoniec\n");
|
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Освобождает выделенную память для дерева
|
||||||
void free_tree(Node *node) {
|
void free_tree(Node *node) {
|
||||||
if (node) {
|
if (node) {
|
||||||
free_tree(node->yes);
|
free_tree(node->yes);
|
||||||
@ -89,51 +84,36 @@ void free_tree(Node *node) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void create_default_knowledge_base() {
|
|
||||||
FILE *file = fopen("knowledge_base.txt", "w");
|
|
||||||
if (!file) {
|
|
||||||
perror("Failed to create the knowledge base file");
|
|
||||||
exit(1);
|
|
||||||
}
|
|
||||||
fprintf(file, "Je to ovocie alebo zelenina\n");
|
|
||||||
fprintf(file, "*Jablko\n");
|
|
||||||
fprintf(file, "*Mrkva\n");
|
|
||||||
fprintf(file, "\n");
|
|
||||||
fprintf(file, "a\n");
|
|
||||||
fclose(file);
|
|
||||||
}
|
|
||||||
|
|
||||||
int main() {
|
int main() {
|
||||||
FILE *file = fopen("knowledge_base.txt", "r");
|
char lines[100][MAX_LINE_LENGTH];
|
||||||
if (!file) {
|
int line_count = 0;
|
||||||
create_default_knowledge_base();
|
|
||||||
file = fopen("knowledge_base.txt", "r");
|
// Считываем базу знаний построчно
|
||||||
if (!file) {
|
while (fgets(lines[line_count], sizeof(lines[line_count]), stdin)) {
|
||||||
perror("Failed to open the knowledge base file");
|
lines[line_count][strcspn(lines[line_count], "\n")] = 0; // Удаляем символ новой строки
|
||||||
return 1;
|
if (lines[line_count][0] == '\0') { // Пустая строка завершает ввод базы знаний
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
|
line_count++;
|
||||||
}
|
}
|
||||||
|
|
||||||
Node *root = parse_knowledge_base(file);
|
// Создаем дерево из базы знаний
|
||||||
|
int index = 0;
|
||||||
|
Node *root = parse_knowledge_base(lines, &index, line_count);
|
||||||
|
|
||||||
if (!root) {
|
if (!root) {
|
||||||
printf("Báza znalostí sa nedá načítať.\n");
|
|
||||||
fclose(file);
|
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("Expert z bufetu to vie.\n");
|
|
||||||
int product_count = count_products(root);
|
int product_count = count_products(root);
|
||||||
printf("Pozna %d druhov ovocia a zeleniny.\n", product_count);
|
printf("Pozna %d druhov ovocia a zeleniny.\n", product_count);
|
||||||
|
|
||||||
char line[MAX_LINE_LENGTH];
|
// Запуск опроса пользователя
|
||||||
while (fgets(line, sizeof(line), file) && line[0] != '\n');
|
run_expert_system(root);
|
||||||
|
|
||||||
run_expert_system(root, file);
|
|
||||||
|
|
||||||
|
// Очистка памяти
|
||||||
free_tree(root);
|
free_tree(root);
|
||||||
fclose(file);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user