Advertisement
1038. Binary Search Tree to Greater Sum Tree
MediumView on LeetCode
1038.cs
C#
public class Solution
{
int prefix = 0;
public TreeNode BstToGst(TreeNode root)
{
if (root.right != null)
BstToGst(root.right);
prefix += root.val;
root.val = prefix;
if (root.left != null)
BstToGst(root.left);
return root;
}
}Advertisement
Was this solution helpful?