-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path94.二叉树的中序遍历.js
More file actions
70 lines (61 loc) · 1.14 KB
/
94.二叉树的中序遍历.js
File metadata and controls
70 lines (61 loc) · 1.14 KB
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
66
67
68
69
/*
* @lc app=leetcode.cn id=94 lang=javascript
*
* [94] 二叉树的中序遍历
*/
// @lc code=start
/**
* Definition for a binary tree node.
* function TreeNode(val, left, right) {
* this.val = (val===undefined ? 0 : val)
* this.left = (left===undefined ? null : left)
* this.right = (right===undefined ? null : right)
* }
*/
/**
* @param {TreeNode} root
* @return {number[]}
*/
// var inorderTraversal = function(root) {
// const result = []
// function fn(node) {
// if(node === null) {
// return
// }
// fn(node.left)
// result.push(node.val)
// fn(node.right)
// }
// fn(root)
// return result
// };
var inorderTraversal = function(root) {
const result = []
const stack = []
let node = root
while (node) {
stack.push(node)
node = node.left
}
while(stack.length) {
const top = stack.pop()
result.push(top.val)
node = top.right
while (node) {
stack.push(node)
node = node.left
}
}
return result
};
// @lc code=end
/**
* a
* / \
* b c
* / \ / \
* d e f g
* / \ / \
* h ij k
*
*/