题解 | JAVA #判断是不是完全二叉树# [P0-T2]

判断是不是完全二叉树

http://www.nowcoder.com/practice/8daa4dff9e36409abba2adbe413d6fae

跟这题一样的 https://blog.nowcoder.net/n/4012546b98ae4356ab926184ed323c58

import java.util.*;

public class Solution {

    public boolean isCompleteTree (TreeNode root) {
      if (root == null) return false;
      Queue<TreeNode> q = new LinkedList<>();
      q.offer(root);
      boolean ended = false;
      
      while(!q.isEmpty()) {
        TreeNode pop = q.poll();
        if (pop == null) {
          ended = true;
        } else {
          if (ended) return false;
          q.offer(pop.left);
          q.offer(pop.right);
        }
      }
      return true;
    }
}
全部评论

相关推荐

矫健的闭门羹烹饪师又熬夜了:本人双非本,在鹅厂测开实习,你这个简历上写的这两个项目的技术栈都差不多,能够让面试官去延伸去问的八股除了redis就再没啥了,建议项目这边可以再改改,然后专业技能那块的话,感觉linux和测试工具可以分开写,毕竟不是干一件事的,反正没实习的基础上面试就深挖项目和八股,好好卷吧
点赞 评论 收藏
分享
评论
9
2
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务