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

[LeetCode] Count Complete Tree Nodes

时间:2015-06-08 21:12:41      阅读:108      评论:0      收藏:0      [点我收藏+]

标签:

Given a complete binary tree, count the number of nodes.

Definition of a complete binary tree from Wikipedia:
In a complete binary tree every level, except possibly the last, is completely filled, and all nodes in the last level are as far left as possible. It can have between 1 and 2h nodes inclusive at the last level h.

解题思路

全然遍历会超时。能够从根节点開始分别计算左子树和右子树的高度。假设相等,则为满二叉树,结点个数为2n?1。假设高度不相等,则结点个数为左子树结点个数+右子树结点个数+1。(高度n是包括根节点的高度)

实现代码

// Runtime: 100 ms
/**
 * 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 leftHight = getLeft(root);
        int rightHeight = getRight(root);
        if (leftHight == rightHeight)
        {
            return pow(2, leftHight) - 1;
        }

        return 1 + countNodes(root->left) + countNodes(root->right);
    }

private:
    int getLeft(TreeNode *root)
    {
        int height = 0;
        while (root)
        {
            height++;
            root = root->left;
        }

        return height;
    }

    int getRight(TreeNode *root)
    {
        int height = 0;
        while (root)
        {
            height++;
            root = root->right;
        }

        return height;
    }
};

[LeetCode] Count Complete Tree Nodes

标签:

原文地址:http://www.cnblogs.com/bhlsheji/p/4561692.html

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