Computer Science Canada Deleting Nodes w/ 2 Children from a BST |
Author: | whoareyou [ Wed Mar 05, 2014 12:01 am ] | ||||||
Post subject: | Deleting Nodes w/ 2 Children from a BST | ||||||
I guess the problem is mostly due to the fact that I still don't understand recursion very well. What my prof is trying to do is to teach it to us by directly applying it to data structures that may use them, such as the Binary Search Tree. I've already been able to delete a node with no children and one children but a node with 2 children is very confusing. I am supposed to write the _delete_node operation. The idea is to replace the deleted node with the node containing the maximum value in its left subtree. By the way, all changes are performed on the nodes, rather than on the values in the nodes. An alternate approach would be to move values between nodes in order to preserve the BST structure (which I think would be easier). So, once I get into the _delete_node operation with a node with two children, I can find the maximum value in the left subtree easily. With that idea, I came up with this:
This can successfully delete the node at the top of the tree, but with any other node in the tree with two children, it won't work (it keeps the max_node in the original position, but replaces the deleted node correctly). Another thing is that in my profs call trace, it doesn't seem as if he is calling the remove function again to remove max_node. Any help regarding this approach would be fantastic. Relevant Code:
|
Author: | Insectoid [ Wed Mar 05, 2014 7:55 am ] | ||
Post subject: | RE:Deleting Nodes w/ 2 Children from a BST | ||
The actual delete function should be very short. Any conditions that decide *if* you delete it should be in another function. The delete function should look like this:
|
Author: | Tony [ Wed Mar 05, 2014 1:55 pm ] | ||||||
Post subject: | RE:Deleting Nodes w/ 2 Children from a BST | ||||||
@Insectoid - that deletes the entire tree rooted at the node A. The interface says to delete just one node. @whoareyou - good call, you should think more about recursion.
Instead of traversing the structure yourself, each node should be able to (recursively) figure out their own max values.
Finally,
Instead of creating copies of the leftover nodes, I'm pretty sure that the intended behaviour is to keep the existing nodes, and relink the pointers into the new desired structure. That is, if you are deleting 1 node, you should have just 1 deletion and 0 new nodes being created. |
Author: | whoareyou [ Wed Mar 05, 2014 4:37 pm ] | ||
Post subject: | Re: Deleting Nodes w/ 2 Children from a BST | ||
I tried drawing out on paper what the procedure was and I came up with some new code which seems to work. I found two different cases regarding the parent node of the maximum node. Does this look correct?
|