This commit is contained in:
Maryna Kravtsova 2020-11-22 15:33:18 +01:00
parent d267e4d1c0
commit f6f5f0ce94

View File

@ -74,7 +74,7 @@ struct tree* find_minimum(struct tree *root){
}
void tree* destroy_tree(struct tree* root){
void destroy_tree(struct tree* root){
if(root == NULL) return;
/*if(root->left == NULL && root->right == NULL){