码迷,mamicode.com
首页 > 其他好文 > 详细

leetcode 958 二叉树的完全性检验

时间:2021-06-10 17:38:44      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:思路   math   root   boolean   lang   return   scom   pre   简介   

简介

思路: 个数和序号相等

code

class Solution {
    int size = 0;
    int maxCode = 0;
    public boolean isCompleteTree(TreeNode root) {
        if(root == null) return true;
        recursive(root, 1);
        return size == maxCode;
    }
    public void recursive(TreeNode root, int index) {
        if(root == null) return;
        size ++;
        maxCode = Math.max(maxCode, index);
        recursive(root.left, index * 2);
        recursive(root.right, index * 2 + 1);
    }
}

leetcode 958 二叉树的完全性检验

标签:思路   math   root   boolean   lang   return   scom   pre   简介   

原文地址:https://www.cnblogs.com/eat-too-much/p/14867473.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!