Replace With Sum Of Larger

easy
1. You are given a partially written BST class.
2. You are required to complete the body of rwsol function. "rwsol" function is expected to replace a node's value with sum of all nodes greater than it.
3. Input and Output is managed for you. 

Note -> Please watch the question video for clarity. Use the statis sum data member to complete your code.

Input Format

Input is managed for you

Output Format

Output is managed for you

Constraints

None

Notice

Try First, Check Solution later

1. You should first read the question and watch the question video.
2. Think of a solution approach, then try and submit the question on editor tab.
3. We strongly advise you to watch the solution video for prescribed approach.

Example

Input
15
50 25 12 n n 37 n n 75 62 n n 87 n n
Output
311 <- 224 -> 87
336 <- 311 -> 274
. <- 336 -> .
. <- 274 -> .
162 <- 87 -> 0
. <- 162 -> .
. <- 0 -> .
Previous
Remove Node From Bst
Next
Lca Of Bst

Related Questions