This commit is contained in:
Maryna Kravtsova 2020-11-22 17:36:22 +01:00
parent eb4a4c2389
commit 5b1c508e35

View File

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