forked from neetcode-gh/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0199-binary-tree-right-side-view.cs
45 lines (39 loc) · 1.22 KB
/
0199-binary-tree-right-side-view.cs
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
/**
* Definition for a binary tree node.
* public class TreeNode {
* public int val;
* public TreeNode left;
* public TreeNode right;
* public TreeNode(int val=0, TreeNode left=null, TreeNode right=null) {
* this.val = val;
* this.left = left;
* this.right = right;
* }
* }
*/
public class Solution {
public IList<int> RightSideView(TreeNode root) {
var result = new List<int>();
if(root == null)
return result;
var q = new Queue<TreeNode>();
q.Enqueue(root);
// traverse the tree using BFS
while(true) {
var count = q.Count;
if(count == 0) break;
for(var i = 0; i < count; i++) {
var cur = q. Dequeue();
if(cur.left != null)
q.Enqueue(cur.left);
if(cur.right != null)
q.Enqueue(cur.right);
// only add the last node from each level, i.e the rightmost node
if(i == count - 1) {
result.Add(cur.val);
}
}
}
return result;
}
}