给你一棵 完全二叉树 的根节点 root ,求出该树的节点个数。
完全二叉树 的定义如下:在完全二叉树中,除了最底层节点可能没填满外,其余每层节点数都达到最大值,并且最下面一层的节点都集中在该层最左边的若干位置。若最底层为第 h 层,则该层包含 1~ 2h 个节点。
class Solution {
public:
int countNodes(TreeNode* root) {
if(root == nullptr) return 0;
TreeNode* left = root -> left;
TreeNode* right = root -> right;
int leftdepth = 0;
int rightdepth = 0;
while(left)
{
left = left->left;
leftdepth++;
}
while(right)
{
right = right->right;
rightdepth++;
}
if(leftdepth == rightdepth)
return ((2<<leftdepth) - 1);
return (countNodes(root->left)+countNodes(root->right) + 1);
}
};
标签:right,int,222,二叉树,root,节点,left
From: https://www.cnblogs.com/lihaoxiang/p/17287704.html