File tree 2 files changed +38
-0
lines changed
2 files changed +38
-0
lines changed Original file line number Diff line number Diff line change 53
53
| 155| [ 最小栈] ( https://leetcode.cn/problems/min-stack/ ) | [ JavaScript] ( ./algorithms/min-stack.js ) | Easy|
54
54
| 160| [ 相交链表] ( https://leetcode.cn/problems/intersection-of-two-linked-lists/ ) | [ JavaScript] ( ./algorithms/intersection-of-two-linked-lists.js ) | Easy|
55
55
| 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|
56
57
| 203| [ 移除链表元素] ( https://leetcode.cn/problems/remove-linked-list-elements/ ) | [ JavaScript] ( ./algorithms/remove-linked-list-elements.js ) | Easy|
57
58
| 206| [ 反转链表] ( https://leetcode-cn.com/problems/reverse-linked-list/ ) | [ JavaScript] ( ./algorithms/reverse-linked-list.js ) | Easy|
58
59
| 222| [ 完全二叉树的节点个数] ( https://leetcode.cn/problems/count-complete-tree-nodes/ ) | [ ] ( JavaScript ) | Medium|
Original file line number Diff line number Diff line change
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
+ } ;
You can’t perform that action at this time.
0 commit comments