Deleting Nodes from a BST

There are three cases to consider in deleting a node from a binary search tree.

Redraw each binary search tree with the node containing N deleted. Be sure to use the BST deletion algorithm explained above.

Challenge!
Add the function delete to the Tree Operations Lab to delete a requested integer.


Continue to:  Unit 8 / Prev / Next