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.
Constraints
None
Format
Input
Input is managed for you
Output
Output is managed for you
Example
Sample Input
15
50 25 12 n n 37 n n 75 62 n n 87 n n
Sample Output
311
Question Video