LeetCode: Convert Bst To Greater Tree Solution

Approach

Reversed in-order traverse (right to left)

Implementation

1/**
2 * Definition for a binary tree node.
3 * function TreeNode(val, left, right) {
4 * this.val = (val===undefined ? 0 : val)
5 * this.left = (left===undefined ? null : left)
6 * this.right = (right===undefined ? null : right)
7 * }
8 */
9/**
10 * @param {TreeNode} root
11 * @return {TreeNode}
12 */
13var convertBST = function (root) {
14 let sum = 0
15
16 const traverse = function (node) {
17 if (!node) {
18 return
19 }
20
21 traverse(node.right)
22 sum += node.val
23 node.val = sum
24 traverse(node.left)
25 }
26
27 traverse(root)
28 return root
29}

Comments

Loading comments...

Tags

leetcode

tree

recursion

Apply and earn a $2,500 bonus once you're hired on your first job!

Clients from the Fortune 500 to Silicon Valley startups

Choose your own rate, get paid on time

From hourly, part-time, to full-time positions

Flexible remote working environment

A lot of open JavaScript jobs!!

Fact corner: Referred talent are 5x more likely to pass the Toptal screening process than the average applicant.

Still hesitate? Read HoningJS author's guide on dealing with Toptal interview process.

Next Post

CodeWars: The Soul Of Wit Reverse An Array

Feb 10, 2021

Previous Post

HoningJS

Search Posts