博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[LeetCode] Count Complete Tree Nodes 求完全二叉树的节点个数
阅读量:7050 次
发布时间:2019-06-28

本文共 2230 字,大约阅读时间需要 7 分钟。

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

Definition of a complete binary tree from :

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.

这道题给定了一棵完全二叉树,让我们求其节点的个数。很多人分不清完全二叉树和满二叉树的区别,下面让我们来看看维基百科上对二者的定义:

A Complete Binary Tree (CBT) is a binary tree in which every level, except possibly the last, is completely filled, and all nodes are as far left as possible.

对于一颗二叉树,假设其深度为d(d>1)。除了第d层外,其它各层的节点数目均已达最大值,且第d层所有节点从左向右连续地紧密排列,这样的二叉树被称为完全二叉树;

换句话说,完全二叉树从根结点到倒数第二层满足完美二叉树,最后一层可以不完全填充,其叶子结点都靠左对齐。

A Perfect Binary Tree(PBT) is a tree with all leaf nodes at the same depth. All internal nodes have degree 2.

二叉树的第i层至多拥有2^{i-1}个节点数;深度为k的二叉树至多总共有{\displaystyle 2^{\begin{aligned}k+1\end{aligned}}-1}个节点数,而总计拥有节点数匹配的,称为“满二叉树”

A Full Binary Tree (FBT) is a tree in which every node other than the leaves has two children.

换句话说,所有非叶子结点的度都是2。(只要你有孩子,你就必然是有两个孩子。)

通过上面的定义,我们可以看出二者的关系是,完美二叉树一定是完全二叉树,而完全二叉树不一定是完美二叉树。那么这道题给的完全二叉树就有可能是完美二叉树,若是完美二叉树,节点个数很好求,为2的h次方-1,h为该完美二叉树的高度。这道题可以用递归和非递归两种方法来解。我们先来看递归的方法,思路是分别找出以当前节点为根节点的左子树和右子树的高度并对比,如果相等,则说明是满二叉树,直接返回节点个数,如果不相等,则节点个数为左子树的节点个数加上右子树的节点个数再加1(根节点),其中左右子树节点个数的计算可以使用递归来计算,参见代码如下:

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;    }};

递归的解法还有一种解法如下所示:

class Solution {public:    int countNodes(TreeNode* root) {        int hLeft = leftHeight(root);        int hRight = rightHeight(root);        if (hLeft == hRight) return pow(2, hLeft) - 1;        return countNodes(root->left) + countNodes(root->right) + 1;    }    int leftHeight(TreeNode* root) {        if (!root) return 0;        return 1 + leftHeight(root->left);    }    int rightHeight(TreeNode* root) {        if (!root) return 0;        return 1 + rightHeight(root->right);    }};

本文转自博客园Grandyang的博客,原文链接:,如需转载请自行联系原博主。

你可能感兴趣的文章
如何将excel中的每一个sheet单存成一个excel文件
查看>>
Java中参数传递是值传递,还是引用传递
查看>>
老男孩教育每日一题-2017年5月12日-磁盘知识点:linux系统中LVM配置实现方法?
查看>>
Linux:压缩解压命令
查看>>
PHP并发IO编程之路
查看>>
让PHP7达到最高性能的几个Tips
查看>>
hibernate 继承映射(二)
查看>>
我的友情链接
查看>>
联想关键业务服务器 sysytem X3950 X6 4U机架式服务器
查看>>
day31:linux系统管理工具(一) w vmstat top sar nload
查看>>
系统集成资质培训 - 考前冲刺100题新书上市
查看>>
一键自动化部署(定制rpm包)
查看>>
web.py开发web 第七章 Formalchemy + Jinja2
查看>>
Python Replace
查看>>
expect自动化交互脚本(三)
查看>>
Oracle 备份与恢复学习笔记(6_3)
查看>>
MySQL分库分表分库后的查询(8th)
查看>>
我的友情链接
查看>>
一张图看清楚成功人士与失败人士的差别,成功人士的10个标志
查看>>
SimpleGame分析
查看>>