Update cv7/program.c
This commit is contained in:
parent
62eb405625
commit
36d426b4e2
146
cv7/program.c
146
cv7/program.c
@ -2,99 +2,89 @@
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
typedef struct Node {
|
#define SIZE 256
|
||||||
char text[100];
|
|
||||||
struct Node* yes;
|
|
||||||
struct Node* no;
|
|
||||||
} Node;
|
|
||||||
|
|
||||||
// Function to create a new node
|
// Štruktúra uzla binárneho stromu
|
||||||
Node* createNode(char* text) {
|
struct strom {
|
||||||
Node* node = (Node*)malloc(sizeof(Node));
|
char otazka[SIZE];
|
||||||
if (!node) {
|
struct strom* ano;
|
||||||
fprintf(stderr, "Chyba pri alokacii pamate.\n");
|
struct strom* nie;
|
||||||
exit(1);
|
};
|
||||||
}
|
|
||||||
strcpy(node->text, text);
|
|
||||||
node->yes = NULL;
|
|
||||||
node->no = NULL;
|
|
||||||
return node;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Recursive function to read and build the tree
|
// Funkcia na načítanie stromu zo štandardného vstupu
|
||||||
Node* readTree(int* count) {
|
struct strom* nacitaj_strom() {
|
||||||
char line[100];
|
char buffer[SIZE];
|
||||||
|
if (!fgets(buffer, SIZE, stdin) || buffer[0] == '\n') {
|
||||||
if (!fgets(line, sizeof(line), stdin) || strcmp(line, "\n") == 0) {
|
return NULL; // Koniec databázy alebo prázdny riadok
|
||||||
return NULL;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Remove newline character from line
|
struct strom* uzol = malloc(sizeof(struct strom));
|
||||||
line[strcspn(line, "\n")] = 0;
|
strcpy(uzol->otazka, buffer);
|
||||||
|
|
||||||
// Check if the line is an answer (starts with '*')
|
if (buffer[0] == '*') {
|
||||||
if (line[0] == '*') {
|
uzol->ano = uzol->nie = NULL; // Tento uzol je list (odpoveď)
|
||||||
(*count)++;
|
|
||||||
return createNode(line + 1); // Skip the '*' character
|
|
||||||
}
|
|
||||||
|
|
||||||
// If it's a question, create a node and recursively read its children
|
|
||||||
Node* node = createNode(line);
|
|
||||||
node->yes = readTree(count);
|
|
||||||
node->no = readTree(count);
|
|
||||||
return node;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Function to interact with the user and navigate the tree
|
|
||||||
void queryUser(Node* node) {
|
|
||||||
if (node == NULL) return;
|
|
||||||
|
|
||||||
if (node->yes == NULL && node->no == NULL) {
|
|
||||||
printf("Expert z bufetu to vie.\n");
|
|
||||||
printf("Je to: %s\n", node->text);
|
|
||||||
printf("Koniec\n");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Print question and get user's answer
|
|
||||||
printf("%s\n", node->text);
|
|
||||||
printf("Odpovedajte 'a' pre prvu moznost alebo 'n' pre druhu moznost.\n");
|
|
||||||
|
|
||||||
char answer;
|
|
||||||
if (scanf(" %c", &answer) != 1) {
|
|
||||||
printf("Nespravny vstup.\n");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (answer == 'a') {
|
|
||||||
queryUser(node->yes);
|
|
||||||
} else if (answer == 'n') {
|
|
||||||
queryUser(node->no);
|
|
||||||
} else {
|
} else {
|
||||||
printf("Nespravny vstup.\n");
|
uzol->ano = nacitaj_strom(); // Rekurzívne načítanie vetvy pre "áno"
|
||||||
|
uzol->nie = nacitaj_strom(); // Rekurzívne načítanie vetvy pre "nie"
|
||||||
|
}
|
||||||
|
|
||||||
|
return uzol;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Funkcia na uvoľnenie pamäte stromu
|
||||||
|
void znic_strom(struct strom* uzol) {
|
||||||
|
if (uzol) {
|
||||||
|
znic_strom(uzol->ano);
|
||||||
|
znic_strom(uzol->nie);
|
||||||
|
free(uzol);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Function to free the tree
|
// Funkcia na interakciu s používateľom (prechádzanie stromu)
|
||||||
void freeTree(Node* node) {
|
void spusti_expert_system(struct strom* uzol) {
|
||||||
if (node == NULL) return;
|
if (!uzol) return;
|
||||||
freeTree(node->yes);
|
|
||||||
freeTree(node->no);
|
printf("%s", uzol->otazka);
|
||||||
free(node);
|
if (!uzol->ano && !uzol->nie) {
|
||||||
|
printf("Koniec\n"); // Konečná odpoveď
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
char odpoved;
|
||||||
|
printf(" (a/n): ");
|
||||||
|
if (scanf(" %c", &odpoved) != 1 || (odpoved != 'a' && odpoved != 'n')) {
|
||||||
|
printf("Očakávala sa odpoveď 'a' alebo 'n'.\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (odpoved == 'a') {
|
||||||
|
spusti_expert_system(uzol->ano);
|
||||||
|
} else {
|
||||||
|
spusti_expert_system(uzol->nie);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
int main() {
|
// Funkcia na spočítanie listov stromu (konečných odpovedí)
|
||||||
int count = 0;
|
int pocet_listov(struct strom* uzol) {
|
||||||
Node* root = readTree(&count);
|
if (!uzol) return 0;
|
||||||
|
if (!uzol->ano && !uzol->nie) return 1;
|
||||||
|
return pocet_listov(uzol->ano) + pocet_listov(uzol->nie);
|
||||||
|
}
|
||||||
|
|
||||||
if (root == NULL) {
|
// Hlavná funkcia
|
||||||
printf("Chyba pri nacitani baze pravidiel.\n");
|
int main() {
|
||||||
|
struct strom* databaza_znalosti = nacitaj_strom();
|
||||||
|
|
||||||
|
if (!databaza_znalosti) {
|
||||||
|
printf("Chyba: databáza je prázdna alebo nesprávne formátovaná.\n");
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
printf("Pozna %d druhov ovocia a zeleniny.\n", count);
|
int pocet_tovarov = pocet_listov(databaza_znalosti);
|
||||||
queryUser(root);
|
printf("Databáza obsahuje %d tovarov.\n", pocet_tovarov);
|
||||||
freeTree(root);
|
|
||||||
|
spusti_expert_system(databaza_znalosti);
|
||||||
|
znic_strom(databaza_znalosti);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user