zoukankan      html  css  js  c++  java
  • [LeetCode] Count Complete Tree Nodes

    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.

    解题思路

    全然遍历会超时。能够从根节点開始分别计算左子树和右子树的高度。假设相等,则为满二叉树,结点个数为2n1。假设高度不相等,则结点个数为左子树结点个数+右子树结点个数+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;
        }
    };
  • 相关阅读:
    pptpvpn链接问题
    nginx网站架构优化思路(原)
    KEEPALIVED 检测RS原理
    linux 做gw(nat)详细配置
    pptpvpn 连接后 无法上外网
    网站最常见的错误
    Python服务器开发 -- 网络基础
    python高性能编程方法一
    一步步来用C语言来写python扩展
    http响应Last-Modified和ETag
  • 原文地址:https://www.cnblogs.com/bhlsheji/p/4561692.html
Copyright © 2011-2022 走看看