博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode] 958. Check Completeness of a Binary Tree
阅读量:6080 次
发布时间:2019-06-20

本文共 871 字,大约阅读时间需要 2 分钟。

Problem

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 2^h nodes inclusive at the last level h.

Solution

class Solution {    public boolean isCompleteTree(TreeNode root) {        if (root == null) return true;        Queue
queue = new LinkedList<>(); queue.offer(root); boolean lastLevel = false; while (!queue.isEmpty()) { TreeNode cur = queue.poll(); if (cur == null) lastLevel = true; else { if (lastLevel) return false; queue.offer(cur.left); queue.offer(cur.right); } } return true; }}

转载地址:http://zghgx.baihongyu.com/

你可能感兴趣的文章
我的友情链接
查看>>
用yum安装mariadb
查看>>
一点IT"边缘化"的人的思考
查看>>
Gallery循环滑动
查看>>
Sql与C#中日期格式转换总结
查看>>
iOS开发流程总结
查看>>
hadoop datanode 启动出错
查看>>
js颜色拾取器
查看>>
IDEA使用(1)intellIJ idea 配置 svn
查看>>
WPF 降低.net framework到4.0
查看>>
数据管理DMS 全量SQL诊断:你的SQL是健康的蓝色,还是危险的红色?
查看>>
搭建一个通用的脚手架
查看>>
开年巨制!千人千面回放技术让你“看到”Flutter用户侧问题
查看>>
开源磁盘加密软件VeraCrypt教程
查看>>
本地vs云:大数据厮杀的最终幸存者会是谁?
查看>>
阿里云公共镜像、自定义镜像、共享镜像和镜像市场的区别 ...
查看>>
shadowtunnel v1.7 发布:新增上级负载均衡支持独立密码
查看>>
Java线程:什么是线程
查看>>
mysql5.7 创建一个超级管理员
查看>>
【框架整合】Maven-SpringMVC3.X+Spring3.X+MyBatis3-日志、JSON解析、表关联查询等均已配置好...
查看>>