-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path897. Increasing Order Search Tree.ts
49 lines (41 loc) · 1.32 KB
/
897. Increasing Order Search Tree.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
{
/**
* Runtime: 77 ms, faster than 64.71% of TypeScript online submissions for Increasing Order Search Tree.
* Memory Usage: 44.7 MB, less than 70.59% of TypeScript online submissions for Increasing Order Search Tree.
*/
/**
* 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)
}
}
function increasingBST(root: TreeNode | null): TreeNode | null {
const queue = [root];
const nodeArray: number[] = [];
while (queue.length) {
const currentNode = queue.shift() as TreeNode;
nodeArray.push(currentNode.val);
if (currentNode.left !== null) {
queue.push(currentNode.left);
}
if (currentNode.right !== null) {
queue.push(currentNode.right);
}
}
nodeArray.sort((a, b) => b - a);
const increasingTree = new TreeNode(nodeArray.pop());
let currentNode = increasingTree;
while (nodeArray.length) {
currentNode.right = new TreeNode(nodeArray.pop());
currentNode = currentNode.right;
}
return increasingTree;
};
}