g0901_1000.s0919_complete_binary_tree_inserter.CBTInserter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of leetcode-in-java Show documentation
Show all versions of leetcode-in-java Show documentation
Java-based LeetCode algorithm problem solutions, regularly updated
package g0901_1000.s0919_complete_binary_tree_inserter;
// #Medium #Breadth_First_Search #Tree #Binary_Tree #Design
// #2022_03_29_Time_11_ms_(96.06%)_Space_42.7_MB_(92.12%)
import com_github_leetcode.TreeNode;
import java.util.LinkedList;
import java.util.Objects;
import java.util.Queue;
/*
* Definition for a binary tree node.
* 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 class CBTInserter {
private final Queue q;
private final TreeNode head;
public CBTInserter(TreeNode root) {
this.q = new LinkedList<>();
this.head = root;
addToQueue();
}
private void addToQueue() {
Queue hlq = new LinkedList<>();
hlq.add(this.head);
while (!hlq.isEmpty()) {
int size = hlq.size();
while (size-- > 0) {
TreeNode poll = hlq.poll();
this.q.add(poll);
if (Objects.requireNonNull(poll).left != null) {
hlq.add(poll.left);
}
if (poll.right != null) {
hlq.add(poll.right);
}
}
}
}
public int insert(int val) {
TreeNode nn = new TreeNode(val);
deleteFullNode();
TreeNode peek = q.peek();
if (Objects.requireNonNull(peek).left == null) {
peek.left = nn;
} else {
peek.right = nn;
}
this.q.add(nn);
return peek.val;
}
private void deleteFullNode() {
while (!this.q.isEmpty()) {
TreeNode peek = this.q.peek();
if (peek.left != null && peek.right != null) {
this.q.poll();
} else {
break;
}
}
}
// get_root()
public TreeNode getRoot() {
return this.head;
}
}
/*
* Your CBTInserter object will be instantiated and called as such:
* CBTInserter obj = new CBTInserter(root);
* int param_1 = obj.insert(val);
* TreeNode param_2 = obj.get_root();
*/