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 }
复制代码

类似Complete Binary Tree Inserter.

posted @   Dylan_Java_NYC  阅读(892)  评论(1编辑  收藏  举报
编辑推荐:
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
阅读排行:
· winform 绘制太阳,地球,月球 运作规律
· AI与.NET技术实操系列(五):向量存储与相似性搜索在 .NET 中的实现
· 超详细:普通电脑也行Windows部署deepseek R1训练数据并当服务器共享给他人
· 【硬核科普】Trae如何「偷看」你的代码?零基础破解AI编程运行原理
· 上周热点回顾(3.3-3.9)
点击右上角即可分享
微信分享提示