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

leetcode 222.Count Complete Tree Nodes

时间:2018-09-12 01:07:46      阅读:135      评论:0      收藏:0      [点我收藏+]

标签:nbsp   str   count   for   span   bin   int   col   完全   

完全二叉树是从左边开始一点点填充节点的,因此需要计算所有的节点的个数。

则分别从左边和右边来进行传递的,当左右是完全二叉树的时候,其节点个数就是pow(2,h)-1。

/**
 * 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) {
        int hleft=0, hright=0;
        TreeNode* pleft=root, *pright=root;
        while(pleft){
            hleft++;
            pleft=pleft->left;
        }
        while(pright){
            hright++;
            pright=pright->right;
        }
        if(hleft==hright) return pow(2,hleft)-1;
        return countNodes(root->left)+countNodes(root->right)+1;
    }
};

 

leetcode 222.Count Complete Tree Nodes

标签:nbsp   str   count   for   span   bin   int   col   完全   

原文地址:https://www.cnblogs.com/newnoobbird/p/9631814.html

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