usaa24/cv7/program.c

132 lines
5.5 KiB
C
Raw Normal View History

2024-11-15 00:42:02 +00:00
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
2024-11-15 00:40:40 +00:00
2024-11-15 00:46:23 +00:00
#define SIZE 256
2024-11-15 00:40:40 +00:00
2024-11-15 00:55:13 +00:00
// Структура для вузла дерева
struct tree {
char value[SIZE]; // Текст питання або твердження
struct tree *left; // Лівий підвузол
struct tree *right; // Правий підвузол
int id; // Ідентифікатор вузла
};
// Функція для знищення дерева та звільнення пам'яті
void destroy_tree(struct tree *tree) {
if (tree == NULL) return; // Якщо вузол порожній, нічого не робимо
destroy_tree(tree->left); // Рекурсивно знищуємо лівий підвузол
destroy_tree(tree->right); // Рекурсивно знищуємо правий підвузол
free(tree); // Звільняємо пам'ять, виділену для поточного вузла
2024-11-15 00:42:02 +00:00
}
2024-11-15 00:40:40 +00:00
2024-11-15 00:55:13 +00:00
// Функція для підрахунку кількості листових елементів (відповідей) в дереві
int count_items(struct tree *tree) {
if (tree == NULL) return 0; // Якщо вузол порожній, повертаємо 0
if (tree->left == NULL && tree->right == NULL) return 1; // Якщо вузол є листом (не має підвузлів), то це відповідь
return count_items(tree->left) + count_items(tree->right); // Рекурсивно підраховуємо кількість листових елементів
}
2024-11-15 00:46:23 +00:00
2024-11-15 00:55:13 +00:00
// Основна функція для запуску системи рішень
void run_system(struct tree *node) {
if (node == NULL) return; // Якщо вузол порожній, припиняємо виконання
2024-11-15 00:40:40 +00:00
2024-11-15 00:55:13 +00:00
int empty_lines = 0; // Лічильник порожніх рядків
int first_prompt = 1; // Флаг для виведення першого підказки
2024-11-15 00:40:40 +00:00
2024-11-15 00:55:13 +00:00
// Основний цикл, який буде працювати, поки є вузли в дереві
while (node != NULL) {
// Якщо вузол є листом (в кінці дерева)
if (node->left == NULL && node->right == NULL) {
printf("%s", node->value); // Виводимо відповідь
printf("Koniec\n"); // Завершуємо програму
return;
}
2024-11-15 00:40:40 +00:00
2024-11-15 00:55:13 +00:00
// Перший запит до користувача, вибір між двома варіантами
if (first_prompt) {
printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n");
first_prompt = 0; // Встановлюємо флаг, щоб підказка виводилась тільки один раз
}
2024-11-15 00:40:40 +00:00
2024-11-15 00:55:13 +00:00
printf("%s", node->value); // Виводимо питання
2024-11-15 00:40:40 +00:00
2024-11-15 00:55:13 +00:00
char answer;
int result = scanf(" %c", &answer); // Читаємо відповідь користувача
2024-11-15 00:40:40 +00:00
2024-11-15 00:55:13 +00:00
// Перевірка на кінець вводу або два порожні рядки поспіль
if (result == EOF || (answer == '\n' && ++empty_lines >= 2)) {
printf("Koniec vstupu\n");
return; // Завершуємо виконання програми
}
2024-11-15 00:40:40 +00:00
2024-11-15 00:55:13 +00:00
// Обробка відповіді користувача
if (answer == 'a') {
empty_lines = 0; // Скидаємо лічильник порожніх рядків
node = node->left; // Переходимо до лівого підвузла
} else if (answer == 'n') {
empty_lines = 0; // Скидаємо лічильник порожніх рядків
node = node->right; // Переходимо до правого підвузла
} else {
printf("Nerozumiem\n"); // Якщо відповідь неправильна
return; // Завершуємо програму
}
2024-11-15 00:42:02 +00:00
}
2024-11-15 00:47:45 +00:00
}
2024-11-15 00:55:13 +00:00
// Функція для читання дерева з вводу
2024-11-15 01:06:46 +00:00
struct tree* read_tree() {
char buffer[SIZE];
memset(buffer, 0, SIZE);
// Read a line from stdin
char* r = fgets(buffer, SIZE, stdin);
2024-11-15 01:08:27 +00:00
if (r == NULL) {
2024-11-15 01:11:26 +00:00
// fprintf(stderr, "Chybna databaza\n");
2024-11-15 01:15:16 +00:00
return NULL; // Exit the program if reading fails
2024-11-15 01:08:27 +00:00
}
2024-11-15 01:06:46 +00:00
// Allocate memory for a new tree node
struct tree* node = calloc(1, sizeof(struct tree));
if (!node) {
2024-11-15 01:13:12 +00:00
//printf("Memory allocation failed!\n");
2024-11-15 01:15:16 +00:00
return NULL;
2024-11-15 00:55:13 +00:00
}
2024-11-15 00:47:45 +00:00
2024-11-15 01:06:46 +00:00
// Copy the input line into the node's value
memcpy(node->value, buffer, SIZE);
2024-11-15 00:47:45 +00:00
2024-11-15 01:06:46 +00:00
// If the line is a leaf node (starts with '*'), no further questions are needed
if (buffer[0] == '*') {
return node; // Leaf node, no need to read further
2024-11-15 00:47:45 +00:00
}
2024-11-15 00:55:13 +00:00
2024-11-15 01:06:46 +00:00
// If not a leaf, recursively read the left and right child nodes
node->left = read_tree(); // Left child (yes answer)
node->right = read_tree(); // Right child (no answer)
return node;
2024-11-15 00:47:45 +00:00
}
2024-11-15 01:08:27 +00:00
2024-11-15 00:47:45 +00:00
int main() {
2024-11-15 01:00:34 +00:00
int counter = 0;
struct tree *root = read_tree(&counter); // Try reading the tree
2024-11-15 00:47:45 +00:00
2024-11-15 00:55:13 +00:00
printf("Expert z bufetu to vie.\n");
2024-11-15 00:47:45 +00:00
2024-11-15 01:00:34 +00:00
// Check if the tree was read successfully
2024-11-15 00:55:13 +00:00
if (root == NULL) {
printf("Chybna databaza\n");
2024-11-15 01:00:34 +00:00
return 0; // Exit if the tree couldn't be read
2024-11-15 00:47:45 +00:00
}
2024-11-15 01:00:34 +00:00
// If the tree was successfully read, count the number of items
2024-11-15 00:55:13 +00:00
int items_count = count_items(root);
2024-11-15 01:00:34 +00:00
printf("Pozna %d druhov ovocia a zeleniny.\n", items_count);
2024-11-15 00:47:45 +00:00
2024-11-15 01:00:34 +00:00
run_system(root); // Run the decision-making system
destroy_tree(root); // Free the allocated memory for the tree
2024-11-15 00:47:45 +00:00
return 0;
2024-11-15 00:42:02 +00:00
}