Initializacia

This commit is contained in:
Kozar 2024-11-12 16:20:56 +00:00
parent e14c23ba01
commit 42ef7de47e

View File

@ -42,7 +42,13 @@ void run_tree(struct tree* tree) {
}
if (tree->value[0] == '*') {
// If the node starts with *, check for children
if (tree->left || tree->right) {
printf("Expert z bufetu to vie.\nChybna databaza\n");
} else {
// If no children, it's the end of a branch
printf("*%s\nKoniec\n", tree->value + 1);
}
return;
}
@ -64,6 +70,7 @@ void run_tree(struct tree* tree) {
}
}
void destroy_tree(struct tree* tree) {
if (tree->left != NULL) {
destroy_tree(tree->left);