Posts by Tulio Paim • 16 points
1 post
-
0
votes1
answer1018
viewsA: How to remove a node in a binary search tree with these specifics?
The error is as follows: void tree_remove(tree * root, int id){ if((*root) == NULL) return ; if(id < (*root)->value) tree_remove(&(*root)->left, id); if(id > (*root)->value)…
canswered Tulio Paim 16