Reputation: 442
I created a binary tree with some integer values, I can search the tree by my code. But I don't know how to proceed delete node operation.
So, how can I delete a node?
Upvotes: 1
Views: 1584
Reputation: 43110
Wikipedia entry - Binary Search Tree - explains how to implement BST operations.
Deletion: There are several cases to be considered:
Upvotes: 1