Recover Bst
1. You are given a partially written function to solve(Refer question video).Input Format
2. You are given the root of a binary search tree (BST), where exactly two nodes of the tree were swapped by mistake. Recover the tree without changing its structure.
Follow up: You are Not Allowed To Use Extra Space(Example : Storing All Element In Arrays).
Input is managed for you.Output Format
Output is managed for you.Question Video
0 <= Number of Nodes <= 10^9Sample Input
-10^9 <= value of Node data <= 10^9
13Sample Output
7
3
2
-1
-1
10
-1
-1
5
-1
12
-1
-1
3 -> 7 <- 10
2 -> 3 <- 5
. -> 2 <- .
. -> 5 <- .
. -> 10 <- 12
. -> 12 <- .
-
Asked in Companies
-
Related Topics
Video Solution
Code Solution
{ }
{ }
Run