forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 1
/
_958.java
70 lines (67 loc) · 2.2 KB
/
_958.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
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
70
package com.fishercoder.solutions;
import com.fishercoder.common.classes.TreeNode;
import java.util.LinkedList;
import java.util.Queue;
/**
* 958. Check Completeness of a Binary Tree
*
* Given a binary tree, determine if it is a complete binary tree.
* Definition of a complete binary tree from Wikipedia:
* In a complete binary tree every level, except possibly the last, is completely filled, and all nodes in the last level are as far left as possible.
* It can have between 1 and 2h nodes inclusive at the last level h.
*
* Example 1:
* 1
* / \
* 2 3
* / \ /
* 4 5 6
*
* Input: [1,2,3,4,5,6]
* Output: true
* Explanation: Every level before the last is full (ie. levels with node-values {1} and {2, 3}),
* and all nodes in the last level ({4, 5, 6}) are as far left as possible.
*
* Example 2:
* 1
* / \
* 2 3
* / \ \
* 4 5 7
* Input: [1,2,3,4,5,null,7]
* Output: false
* Explanation: The node with value 7 isn't as far left as possible.
*
* Note:
* The tree will have between 1 and 100 nodes.
* */
public class _958 {
public static class Solution1 {
public boolean isCompleteTree(TreeNode root) {
Queue<TreeNode> queue = new LinkedList<>();
queue.offer(root);
boolean shouldHaveNoMoreChildren = false;
while (!queue.isEmpty()) {
int size = queue.size();
for (int i = 0; i < size; i++) {
TreeNode curr = queue.poll();
if (shouldHaveNoMoreChildren && (curr.left != null || curr.right != null)) {
return false;
}
if (curr.left == null && curr.right != null) {
return false;
}
if (curr.left != null) {
queue.offer(curr.left);
}
if (curr.right == null) {
shouldHaveNoMoreChildren = true;
} else {
queue.offer(curr.right);
}
}
}
return true;
}
}
}