Skip to content

Commit 01a9305

Browse files
committed
Binary Tree Right Side View
1 parent 269175b commit 01a9305

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
|155|[最小栈](https://leetcode.cn/problems/min-stack/)|[JavaScript](./algorithms/min-stack.js)|Easy|
5454
|160|[相交链表](https://leetcode.cn/problems/intersection-of-two-linked-lists/)|[JavaScript](./algorithms/intersection-of-two-linked-lists.js)|Easy|
5555
|189|[轮转数组](https://leetcode-cn.com/problems/rotate-array/)|[JavaScript](./algorithms/rotate-array.js)|Medium|
56+
|199|[二叉树的右视图](https://leetcode.cn/problems/binary-tree-right-side-view/)|[JavaScript](./algorithms/binary-tree-right-side-view.js)|Medium|
5657
|203|[移除链表元素](https://leetcode.cn/problems/remove-linked-list-elements/)|[JavaScript](./algorithms/remove-linked-list-elements.js)|Easy|
5758
|206|[反转链表](https://leetcode-cn.com/problems/reverse-linked-list/)|[JavaScript](./algorithms/reverse-linked-list.js)|Easy|
5859
|222|[完全二叉树的节点个数](https://leetcode.cn/problems/count-complete-tree-nodes/)|[](JavaScript)|Medium|
+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
/**
2+
* Definition for a binary tree node.
3+
* function TreeNode(val, left, right) {
4+
* this.val = (val===undefined ? 0 : val)
5+
* this.left = (left===undefined ? null : left)
6+
* this.right = (right===undefined ? null : right)
7+
* }
8+
*/
9+
/**
10+
* @param {TreeNode} root
11+
* @return {number[]}
12+
*/
13+
var rightSideView = function (root) {
14+
// 思路:
15+
// 层序遍历的时候,判断是否遍历到单层的最后面的元素
16+
// 如果是,就放进result数组中,随后返回result就可以了
17+
18+
const result = [];
19+
const queue = [];
20+
queue.push(root);
21+
22+
if (!root) return [];
23+
24+
while (queue.length > 0) {
25+
let size = queue.length;
26+
27+
while (size--) {
28+
const node = queue.shift();
29+
30+
size === 0 && result.push(node.val);
31+
node.left && queue.push(node.left);
32+
node.right && queue.push(node.right);
33+
}
34+
}
35+
36+
return result;
37+
};

0 commit comments

Comments
 (0)