Skip to main content

Convert BST to Greater Tree - Solution & Explanation

MediumTreeDepth-First SearchBinary Search TreeBinary Tree11 min readAsked at: Amazon, Microsoft, Meta +1
Practice this problem

Problem Statement

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.

As a reminder, a binary search tree is a tree that satisfies these constraints:

  • The left subtree of a node contains only nodes with keys less than the node's key.
  • The right subtree of a node contains only nodes with keys greater than the node's key.
  • Both the left and right subtrees must also be binary search trees.

 

Example 1:

Input: root = [4,1,6,0,2,5,7,null,null,null,3,null,null,null,8]
Output: [30,36,21,36,35,26,15,null,null,null,33,null,null,null,8]

Example 2:

Input: root = [0,null,1]
Output: [1,null,1]

 

Constraints:

  • The number of nodes in the tree is in the range [0, 104].
  • -104 <= Node.val <= 104
  • All the values in the tree are unique.
  • root is guaranteed to be a valid binary search tree.

 

Note: This question is the same as 1038: https://leetcode.com/problems/binary-search-tree-to-greater-sum-tree/

Approach Overview

Problem Overview: You are given a Binary Search Tree where each node must be updated to contain its original value plus the sum of all keys greater than it. The BST ordering property (left < root < right) is the key observation that makes the problem solvable efficiently.

Approach 1: Reverse Inorder Traversal (O(n) time, O(h) space)

A Binary Search Tree visited in normal inorder produces values in ascending order. Reversing the order (right → root → left) processes nodes from largest to smallest. Maintain a running sum of visited node values. When visiting a node, add the running sum to its value, then update the sum. This works because every node encountered earlier in reverse inorder is guaranteed to have a greater value. The traversal can be implemented using recursion or an explicit stack via depth-first search. Time complexity is O(n) since every node is visited once, and auxiliary space is O(h) where h is the tree height due to the recursion stack.

Approach 2: Morris Traversal (O(n) time, O(1) space)

Morris traversal eliminates the recursion stack by temporarily modifying tree pointers during traversal. For this problem, perform a reverse Morris traversal (right → root → left). For each node, locate its inorder successor and create a temporary threaded link back to the current node. This allows returning after exploring the right subtree without a stack. Maintain the same running sum logic used in the DFS solution. After processing, restore all modified pointers so the tree structure remains intact. The traversal still visits each node a constant number of times, giving O(n) time and O(1) extra space. This approach is useful when strict memory constraints exist or when recursion depth might become large.

Recommended for interviews: Reverse inorder traversal is the solution most interviewers expect. It directly leverages the tree ordering property and is easy to reason about. Mentioning Morris traversal shows deeper knowledge of traversal optimization and space reduction, but the recursive DFS approach usually communicates the core insight more clearly during interviews.

Approach 1: Reverse Inorder Traversal Approach

This approach leverages the property of Binary Search Trees where the nodes in the right subtree are greater than those in the left subtree. By performing a reverse inorder traversal (right -> root -> left), we can accumulate the sum of all nodes greater than the current node and update each node with this accumulated sum. The traversal ensures that we always process the greater nodes first.

The C solution defines a helper function traverse that modifies the tree in place. This function is called with the root of the tree and maintains a running total of the sum of node values. We first recurse into the right subtree (greater values), add the current node's value to the sum, update the node's value to the sum, and finally recurse into the left subtree.

Code

C

C++

Java

Python

C#

JavaScript

Complexity

Time Complexity: O(n), where n is the number of nodes in the BST, since we visit each node exactly once.
Space Complexity: O(h), where h is the height of the tree, due to the recursion stack used during traversal.

Try this approach in the editor →

Approach 2: Morris Traversal Approach

The Morris Traversal technique allows in-order traversal of a binary tree without using extra space for recursion or a stack. It modifies the tree structure during the traversal, and at the end of the traversal, the original tree structure is restored.

For this problem, we adapt the Morris Traversal to traverse the tree in reverse inorder fashion and keep track of the sum of nodes greater than the current node.

This Python solution uses the Morris Traversal technique, which allows modifying the tree without using stack or recursion explicitly. The key idea is to establish a temporary link between each node and its inorder predecessor, traverse in reverse inorder, update the nodes, and then restore the tree structure by removing the temporary links.

Code

Python

Complexity

Time Complexity: O(n), where n is the number of nodes. Although every edge is visited at most twice, the overall complexity remains linear.
Space Complexity: O(1) since no extra space is used apart from variables.

Try this approach in the editor →

Approach 3: Default Approach

Code

Python

Java

C++

Go

JavaScript

Try this approach in the editor →

Complexity Comparison

ApproachComplexity
Reverse Inorder Traversal Approach

Time Complexity: O(n), where n is the number of nodes in the BST, since we visit each node exactly once.
Space Complexity: O(h), where h is the height of the tree, due to the recursion stack used during traversal.

Morris Traversal Approach

Time Complexity: O(n), where n is the number of nodes. Although every edge is visited at most twice, the overall complexity remains linear.
Space Complexity: O(1) since no extra space is used apart from variables.

Default Approach

Detailed Complexity Analysis

ApproachTimeSpaceWhen to Use
Reverse Inorder Traversal (DFS)O(n)O(h)Standard interview solution. Simple recursion leveraging BST ordering.
Morris Reverse TraversalO(n)O(1)Useful when minimizing auxiliary memory or avoiding recursion stack.

Video Solution

Convert BST to Greater Tree - Leetcode 538 - PythonNeetCode28,226 views views

Watch 9 more video solutions →

Frequently Asked Questions

Is Convert BST to Greater Tree easy or hard?
Convert BST to Greater Tree is classified as a Medium problem. The main challenge is recognizing that reverse inorder traversal naturally processes nodes from largest to smallest, which enables maintaining a running sum efficiently.
Convert BST to Greater Tree Python/Java solution
Both Python and Java implementations typically use recursive reverse inorder traversal. A global or class-level running sum variable tracks the accumulated value, and each visited node updates its value with that sum. The algorithm runs in O(n) time and O(h) stack space.
How to solve Convert BST to Greater Tree in O(n)?
Traverse the BST in reverse inorder (right → root → left). Maintain a running variable storing the sum of all previously visited nodes. Update each node by adding this running sum, then update the sum with the node's new value. Since each node is processed once, the total runtime is O(n).
What is the best approach for Convert BST to Greater Tree?
Reverse inorder traversal is the most common solution. By visiting nodes in the order right → root → left, you process values from largest to smallest and maintain a running sum of previously visited nodes. Each node adds this sum to its value, producing the correct greater tree in O(n) time.
Is Convert BST to Greater Tree asked at Google/Amazon/Meta?
BST transformation problems frequently appear in interviews at companies like Amazon, Google, and Meta. Variations of this problem test understanding of BST properties, depth-first traversal, and tree manipulation during recursion.
What data structure is used in Convert BST to Greater Tree?
The primary data structure is a Binary Search Tree. The algorithm relies on the BST ordering property and uses depth-first search traversal, either through recursion, an explicit stack, or Morris traversal for constant extra space.
What is the time complexity of Convert BST to Greater Tree?
The optimal time complexity is O(n) because every node in the tree must be visited exactly once. Space complexity is O(h) with recursive DFS where h is the height of the tree, or O(1) when using Morris traversal.

Ready to solve this problem?

Practice Convert BST to Greater Tree with our built-in code editor and test cases.

Practice on FleetCode