-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBreadthSearchTree.java
39 lines (37 loc) · 1.08 KB
/
BreadthSearchTree.java
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
import java.util.*;
public class TreeNode {
int val;
TreeNode left;
TreeNode right;
TreeNode() {}
TreeNode(int val) { this.val = val; }
TreeNode(int val, TreeNode left, TreeNode right) {
this.val = val;
this.left = left;
this.right = right;
}
public List<List<Integer>> levelOrder(TreeNode root) {
List<List<Integer>> result = new ArrayList<>();
if(root == null){
return result;
}
Queue<TreeNode> queue= new LinkedList<>();
queue.offer(root);
while(!queue.isEmpty()){
int level=queue.size();
List<Integer> currLevel=new ArrayList<>(level);
for(int i=0;i<level;i++){
TreeNode curr=queue.poll();
currLevel.add(curr.val);
if(curr.left != null){
queue.offer(curr.left);
}
if(curr.right != null){
queue.offer(curr.right);
}
}
result.add(currLevel);
}
return result;
}
}