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

LC 222. Count Complete Tree Nodes (二分查找)

时间:2020-11-27 11:14:59      阅读:5      评论:0      收藏:0      [点我收藏+]

标签:tree node   image   false   roo   problems   img   complete   mic   bit   

link
技术图片

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    int countNodes(TreeNode* root) {
        if(root==NULL) return 0;
        if(root->left==NULL&& root->right==NULL) return 1;
        int level=1;
        TreeNode* cur=root->left;
        while(cur!=NULL){
            level++;
            cur=cur->left;
        }
        int left=getcnt(level-1)+1;
        int right=getcnt(level);

        while(left<=right){
            int mid=(left+right)/2;
            if(exists(root,mid,level)){
                left=mid+1;
            }else{
                right=mid-1;
            }
        }
        return right;
    }

    bool exists(TreeNode* root,int n, int level){
        int checkbit=1<<(level-2);
        while(checkbit>0){
            if(checkbit&n){
                if(root->right==NULL) return false;
                root=root->right;
            }else{
                if(root->left==NULL) return false;
                root=root->left;
            }
            checkbit>>=1;
        }
        return true;
    }

    int getcnt(int n){
        return (1<<n)-1;
    }
};

LC 222. Count Complete Tree Nodes (二分查找)

标签:tree node   image   false   roo   problems   img   complete   mic   bit   

原文地址:https://www.cnblogs.com/FEIIEF/p/14028473.html

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