LeetCode 958. Check Completeness of a Binary Tree

Posted dylan-java-nyc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 958. Check Completeness of a Binary Tree相关的知识,希望对你有一定的参考价值。

原题链接在这里:https://leetcode.com/problems/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:

技术图片

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:

技术图片

Input: [1,2,3,4,5,null,7]
Output: false
Explanation: The node with value 7 isn‘t as far left as possible.

Note:

  1. The tree will have between 1 and 100 nodes.

题解:

Perform level order traversal on the tree, if popped node is not null, then add its left and right child, no matter if they are null or not.

If the tree is complete, when first met null in the queue, then the rest should all be null. Otherwise, it is not complete.

Time Complexity: O(n).

Space: O(n).

AC Java:

 1 /**
 2  * Definition for a binary tree node.
 3  * public class TreeNode 
 4  *     int val;
 5  *     TreeNode left;
 6  *     TreeNode right;
 7  *     TreeNode(int x)  val = x; 
 8  * 
 9  */
10 class Solution 
11     public boolean isCompleteTree(TreeNode root) 
12         LinkedList<TreeNode> que = new LinkedList<TreeNode>();
13         que.add(root);
14         while(que.peek() != null)
15             TreeNode cur = que.poll();
16             que.add(cur.left);
17             que.add(cur.right);
18         
19         
20         while(!que.isEmpty() && que.peek() == null)
21             que.poll();
22         
23         
24         return que.isEmpty();
25     
26 

 

以上是关于LeetCode 958. Check Completeness of a Binary Tree的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode Java刷题笔记—958. 二叉树的完全性检验

LeetCode --- 1640. Check Array Formation Through Concatenation 解题报告

LeetCode --- 1640. Check Array Formation Through Concatenation 解题报告

[LeetCode] 2068. Check Whether Two Strings are Almost Equivalent

leetcode1346. Check If N and Its Double Exist

LeetCode --- 1232. Check If It Is a Straight Line 解题报告