-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathres.ts
65 lines (55 loc) · 1.49 KB
/
res.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/**
* Definition for a binary tree node.
* class TreeNode {
* val: number
* left: TreeNode | null
* right: TreeNode | null
* constructor(val?: number, left?: TreeNode | null, right?: TreeNode | null) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
* }
*/
const inorder = (root: TreeNode | null, nums: number[]) => {
if (!root) {
return ;
}
inorder(root.left, nums);
nums.push(root.val);
inorder(root.right, nums);
}
const findSwapTwoNums = (root: TreeNode | null, nums: number[]) => {
let x = -1, y = -1;
for (let i = 1; i < nums.length; i++) {
if (nums[i] < nums[i-1]) {
y = i;
if (x === -1) {
x = i-1;
} else {
break;
}
}
}
return [nums[x], nums[y]];
}
const recover = (root: TreeNode | null, index: number, x: number, y: number) => {
if (!root || index === 0) {
return ;
}
if ([x, y].includes(root.val)) {
root.val = root.val === x ? y : x;
index--;
}
recover(root.left, index, x, y);
recover(root.right, index, x, y);
}
/**
Do not return anything, modify root in-place instead.
*/
function recoverTree(root: TreeNode | null): void {
const nums: number[] = [];
inorder(root, nums);
const [x, y] = findSwapTwoNums(root, nums);
recover(root, 2, x, y);
};