Problem Description
Given the root of a Binary Search Tree (BST), convert it to a Greater Tree such that every key of the original BST is changed to the original key plus the sum of all keys greater than the original key in BST.
Key Insights
- The problem requires transforming a Binary Search Tree into a Greater Tree.
- The transformation involves summing keys greater than each node's key.
- In a BST, the in-order traversal can be used to visit nodes in ascending order.
- A reverse in-order traversal (right-root-left) is suitable to accumulate the sums since it processes nodes in descending order.
Space and Time Complexity
Time Complexity: O(n) - where n is the number of nodes in the tree, since each node is visited once. Space Complexity: O(h) - where h is the height of the tree, due to the recursion stack.
Solution
The algorithm uses a reverse in-order traversal to accumulate the sum of all node values greater than the current node. A running total is maintained during traversal, which is updated as we visit each node. This way, we can modify each node's value in-place.
- Start the traversal from the rightmost node (which is the largest).
- Maintain a variable to keep track of the cumulative sum of visited nodes.
- For each node, update its value by adding the cumulative sum.
- Update the cumulative sum to include the current node's new value before moving to the left child.