forked from lazzzis/LeetCode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
62 lines (55 loc) · 1.1 KB
/
main.js
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
/**
* Definition for a binary tree node.
* function TreeNode(val) {
* this.val = val;
* this.left = this.right = null;
* }
*/
/**
* @param {TreeNode} root
* @return {number[]}
*/
var postorderTraversal = function(root) {
if (root == null) return []
const stack = new Stack()
stack.push(root)
const ans = []
while (!stack.empty()) {
const root = stack.pop()
if (root.left == null && root.right == null) {
ans.push(root.val)
} else {
stack.push(root)
if (root.right != null) stack.push(root.right)
if (root.left != null) stack.push(root.left)
root.left = root.right = null
}
}
return ans
};
class Stack {
constructor (vector = []) {
this._vector = vector
}
pop () {
if (this.length === 0) {
throw new Error('Failed to pop: empty stack')
}
return this._vector.pop()
}
push (val) {
return this._vector.push(val)
}
top () {
return this._vector[this.length - 1]
}
get length () {
return this._vector.length
}
empty () {
return this.length === 0
}
clear () {
this._vector = []
}
}