2024-11-06 07:18:40 +00:00
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
|
2024-11-11 18:01:42 +00:00
|
|
|
|
#define MAX_TEXT 256
|
2024-11-06 08:18:46 +00:00
|
|
|
|
|
2024-11-06 08:31:24 +00:00
|
|
|
|
// Структура вузла дерева
|
2024-11-11 18:01:42 +00:00
|
|
|
|
typedef struct Node {
|
|
|
|
|
char text[MAX_TEXT];
|
|
|
|
|
struct Node *yes;
|
|
|
|
|
struct Node *no;
|
|
|
|
|
} Node;
|
|
|
|
|
|
|
|
|
|
// Функція для створення нового вузла
|
|
|
|
|
Node* createNode(const char* text) {
|
|
|
|
|
Node* node = (Node*)malloc(sizeof(Node));
|
|
|
|
|
if (node) {
|
|
|
|
|
strncpy(node->text, text, MAX_TEXT);
|
|
|
|
|
node->yes = NULL;
|
|
|
|
|
node->no = NULL;
|
|
|
|
|
}
|
2024-11-06 08:31:24 +00:00
|
|
|
|
return node;
|
|
|
|
|
}
|
2024-11-06 07:18:40 +00:00
|
|
|
|
|
2024-11-11 18:01:42 +00:00
|
|
|
|
// Завантаження дерева з файлу
|
|
|
|
|
Node* loadTree(FILE *file) {
|
|
|
|
|
char line[MAX_TEXT];
|
|
|
|
|
if (!fgets(line, sizeof(line), file)) {
|
2024-11-06 08:31:24 +00:00
|
|
|
|
return NULL;
|
2024-11-06 08:18:46 +00:00
|
|
|
|
}
|
2024-11-11 18:01:42 +00:00
|
|
|
|
line[strcspn(line, "\n")] = 0; // Видаляємо новий рядок
|
2024-11-06 07:44:04 +00:00
|
|
|
|
|
2024-11-11 18:01:42 +00:00
|
|
|
|
// Визначаємо, чи це листовий вузол
|
|
|
|
|
if (line[0] == '*') {
|
|
|
|
|
return createNode(line + 1); // Видаляємо символ '*' на початку
|
2024-11-06 07:18:40 +00:00
|
|
|
|
}
|
2024-11-06 08:31:24 +00:00
|
|
|
|
|
2024-11-11 18:01:42 +00:00
|
|
|
|
// Створюємо внутрішній вузол з двома піддеревами
|
|
|
|
|
Node *node = createNode(line);
|
|
|
|
|
node->yes = loadTree(file);
|
|
|
|
|
node->no = loadTree(file);
|
2024-11-06 08:18:46 +00:00
|
|
|
|
return node;
|
2024-11-06 07:18:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-11-11 18:01:42 +00:00
|
|
|
|
// Функція для підрахунку вузлів (листових та внутрішніх)
|
|
|
|
|
void countNodes(Node* root, int* leafCount, int* internalCount) {
|
|
|
|
|
if (root == NULL) {
|
|
|
|
|
return;
|
2024-11-06 08:31:24 +00:00
|
|
|
|
}
|
2024-11-11 18:01:42 +00:00
|
|
|
|
if (root->yes == NULL && root->no == NULL) {
|
|
|
|
|
(*leafCount)++;
|
|
|
|
|
} else {
|
|
|
|
|
(*internalCount)++;
|
|
|
|
|
countNodes(root->yes, leafCount, internalCount);
|
|
|
|
|
countNodes(root->no, leafCount, internalCount);
|
2024-11-06 08:31:24 +00:00
|
|
|
|
}
|
2024-11-06 07:18:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-11-11 18:01:42 +00:00
|
|
|
|
// Функція для проведення діалогу з користувачем
|
|
|
|
|
void interact(Node* root) {
|
|
|
|
|
Node* current = root;
|
|
|
|
|
while (current->yes != NULL && current->no != NULL) {
|
|
|
|
|
printf("%s (a/n): ", current->text);
|
|
|
|
|
char answer;
|
|
|
|
|
|
|
|
|
|
// Читання одного символа для відповіді
|
|
|
|
|
int res = fgetc(stdin); // Використовуємо fgetc для точного контролю вводу
|
|
|
|
|
// Пропускаємо всі зайві символи нового рядка або пробіли
|
|
|
|
|
while (res == '\n' || res == ' ' || res == '\t') {
|
|
|
|
|
res = fgetc(stdin);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (res == EOF) {
|
|
|
|
|
printf("Некоректна відповідь! Завершення програми.\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
answer = (char)res; // Зберігаємо введений символ
|
|
|
|
|
|
|
|
|
|
if (answer == 'a') {
|
|
|
|
|
current = current->yes;
|
|
|
|
|
} else if (answer == 'n') {
|
|
|
|
|
current = current->no;
|
|
|
|
|
} else {
|
|
|
|
|
printf("Некоректна відповідь! Завершення програми.\n");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
printf("Результат: %s\n", current->text);
|
|
|
|
|
}
|
2024-11-06 08:18:46 +00:00
|
|
|
|
|
2024-11-11 18:01:42 +00:00
|
|
|
|
// Функція для очищення пам'яті дерева
|
|
|
|
|
void freeTree(Node* root) {
|
|
|
|
|
if (root == NULL) {
|
2024-11-06 08:18:46 +00:00
|
|
|
|
return;
|
|
|
|
|
}
|
2024-11-11 18:01:42 +00:00
|
|
|
|
freeTree(root->yes);
|
|
|
|
|
freeTree(root->no);
|
|
|
|
|
free(root);
|
|
|
|
|
}
|
2024-11-06 08:18:46 +00:00
|
|
|
|
|
2024-11-11 18:01:42 +00:00
|
|
|
|
int main(int argc, char *argv[]) {
|
|
|
|
|
// Відкриваємо файл або використовуємо стандартний вхід
|
|
|
|
|
FILE *file;
|
|
|
|
|
if (argc > 1) {
|
|
|
|
|
file = fopen(argv[1], "r");
|
|
|
|
|
if (!file) {
|
|
|
|
|
printf("Помилка: не вдалося відкрити файл %s.\n", argv[1]);
|
|
|
|
|
return 1;
|
|
|
|
|
}
|
2024-11-09 17:43:51 +00:00
|
|
|
|
} else {
|
2024-11-11 18:01:42 +00:00
|
|
|
|
file = stdin; // Використовуємо стандартний вхід, якщо файл не заданий
|
2024-11-06 07:18:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-11-11 18:01:42 +00:00
|
|
|
|
// Завантажуємо дерево з файлу
|
|
|
|
|
Node* root = loadTree(file);
|
|
|
|
|
if (file != stdin) fclose(file);
|
2024-11-06 07:18:40 +00:00
|
|
|
|
|
2024-11-11 18:01:42 +00:00
|
|
|
|
// Перевірка на успішне завантаження дерева
|
|
|
|
|
if (!root) {
|
|
|
|
|
printf("Помилка: дерево не було завантажене.\n");
|
|
|
|
|
return 1;
|
2024-11-06 07:18:40 +00:00
|
|
|
|
}
|
|
|
|
|
|
2024-11-11 18:01:42 +00:00
|
|
|
|
// Підрахунок вузлів
|
|
|
|
|
int leafCount = 0, internalCount = 0;
|
|
|
|
|
countNodes(root, &leafCount, &internalCount);
|
|
|
|
|
printf("Загальна кількість товарів (листових вузлів): %d\n", leafCount);
|
|
|
|
|
printf("Кількість питань (внутрішніх вузлів): %d\n", internalCount);
|
2024-11-06 08:31:24 +00:00
|
|
|
|
|
2024-11-11 18:01:42 +00:00
|
|
|
|
// Інтерактивна взаємодія з користувачем
|
|
|
|
|
printf("Починаємо діалог...\n");
|
|
|
|
|
interact(root);
|
2024-11-06 07:18:40 +00:00
|
|
|
|
|
2024-11-11 18:01:42 +00:00
|
|
|
|
// Очищення пам'яті
|
2024-11-06 08:31:24 +00:00
|
|
|
|
freeTree(root);
|
2024-11-11 18:01:42 +00:00
|
|
|
|
printf("Програма завершена успішно.\n");
|
2024-11-06 07:18:40 +00:00
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|