Reputation: 1
I am working on optimizing the Delete-Max operation in an unbalanced Binary Search Tree (BST) where frequent max deletions occur. The current approach follows:
Problems Faced:
Would an AVL Tree or a Red-Black Tree be a better choice to maintain balance with frequent deletions? Are there alternative tree structures that handle frequent deletions more efficiently?
Upvotes: 0
Views: 20