This commit is contained in:
Maryna Kravtsova 2020-11-22 17:34:56 +01:00
parent d692f08a9e
commit eb4a4c2389

View File

@ -45,7 +45,7 @@ void search(struct tree* this){
printf("Koniec vstupu\n"); printf("Koniec vstupu\n");
exit(0); exit(0);
} }
else{
if(buffer[0] == 'a'){ if(buffer[0] == 'a'){
if(this->left->value[0] == '*'){ if(this->left->value[0] == '*'){
printf("%s\n", this->left->value); printf("%s\n", this->left->value);
@ -78,6 +78,7 @@ void search(struct tree* this){
printf("Nerozumiem\n"); printf("Nerozumiem\n");
return; return;
} }
}
} }
void print_tree(struct tree* tree,int offset){ void print_tree(struct tree* tree,int offset){