usaa24/cv7/program.c

98 lines
3.0 KiB
C
Raw Normal View History

2024-11-06 07:18:40 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2024-11-06 07:44:04 +00:00
#define MAX_LINE_LENGTH 100
// Структура для вузла дерева
2024-11-06 07:18:40 +00:00
typedef struct Node {
2024-11-06 07:44:04 +00:00
char *question; // Питання
char *answer; // Відповідь (товар)
struct Node *yes; // Далі по "так"
struct Node *no; // Далі по "ні"
2024-11-06 07:18:40 +00:00
} Node;
// Функція для створення нового вузла
2024-11-06 07:44:04 +00:00
Node* create_node(char *question, char *answer) {
Node *node = (Node*)malloc(sizeof(Node));
node->question = question;
node->answer = answer;
node->yes = NULL;
node->no = NULL;
return node;
2024-11-06 07:18:40 +00:00
}
2024-11-06 07:44:04 +00:00
// Функція для зчитування дерева з файлу
Node* build_tree(FILE *file) {
char line[MAX_LINE_LENGTH];
if (fgets(line, sizeof(line), file) == NULL) return NULL;
// Видалити пробіли та символи нового рядка в кінці
line[strcspn(line, "\n")] = 0;
if (line[0] == '*') { // Це відповідь
return create_node(NULL, strdup(line + 1)); // Пропускаємо зірочку
} else { // Це питання
Node *node = create_node(strdup(line), NULL);
node->yes = build_tree(file); // Рекурсія для 'так'
node->no = build_tree(file); // Рекурсія для 'ні'
return node;
2024-11-06 07:18:40 +00:00
}
}
2024-11-06 07:44:04 +00:00
// Функція для підрахунку кількості товарів (листків дерева)
int count_items(Node *node) {
2024-11-06 07:18:40 +00:00
if (node == NULL) return 0;
2024-11-06 07:44:04 +00:00
if (node->answer != NULL) return 1; // Листок дерева
return count_items(node->yes) + count_items(node->no);
2024-11-06 07:18:40 +00:00
}
2024-11-06 07:44:04 +00:00
// Функція для взаємодії з користувачем
void ask_questions(Node *node) {
2024-11-06 07:18:40 +00:00
while (node != NULL) {
2024-11-06 07:44:04 +00:00
if (node->answer != NULL) { // Якщо це відповідь
printf("Expert z bufetu to vie.\n");
printf("Pozna %d druhov ovocia a zeleniny.\n", count_items(node));
printf("Koniec\n");
2024-11-06 07:18:40 +00:00
return;
}
2024-11-06 07:44:04 +00:00
printf("%s\n", node->question);
printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n");
char response;
scanf(" %c", &response); // Читання відповіді
if (response == 'a') {
node = node->yes;
} else if (response == 'n') {
node = node->no;
} else {
printf("Nespravny vstup. Koniec.\n");
return;
2024-11-06 07:18:40 +00:00
}
}
}
int main() {
2024-11-06 07:44:04 +00:00
FILE *file = fopen("data.txt", "r");
if (file == NULL) {
printf("Помилка при зчитуванні файлу.\n");
return 1;
2024-11-06 07:18:40 +00:00
}
2024-11-06 07:44:04 +00:00
Node *tree = build_tree(file);
2024-11-06 07:18:40 +00:00
fclose(file);
2024-11-06 07:44:04 +00:00
if (tree == NULL) {
printf("Помилка в структурі файлу.\n");
2024-11-06 07:18:40 +00:00
return 1;
}
2024-11-06 07:44:04 +00:00
printf("Expert z bufetu to vie.\n");
printf("Pozna %d druhov ovocia a zeleniny.\n", count_items(tree));
2024-11-06 07:18:40 +00:00
2024-11-06 07:44:04 +00:00
ask_questions(tree);
2024-11-06 07:18:40 +00:00
return 0;
}