赞
踩
看完本篇可以一起做了如下两道题目:
本题可以使用前序(中左右),也可以使用后序遍历(左右中),使用前序求的就是深度,使用后序求的是高度。
而根节点的高度就是二叉树的最大深度,所以本题中我们通过后序求的根节点高度来求的二叉树最大深度。
这一点其实是很多同学没有想清楚的,很多题解同样没有讲清楚。
我先用后序遍历(左右中)来计算树的高度。
代码如下:
- int getdepth(TreeNode* node)
代码如下:
if (node == NULL) return 0;
代码如下:
- int leftdepth = getdepth(node->left); // 左
- int rightdepth = getdepth(node->right); // 右
- int depth = 1 + max(leftdepth, rightdepth); // 中
- return depth;
所以整体c++代码如下:
- class solution {
- public:
- int getdepth(TreeNode* node) {
- if (node == NULL) return 0;
- int leftdepth = getdepth(node->left); // 左
- int rightdepth = getdepth(node->right); // 右
- int depth = 1 + max(leftdepth, rightdepth); // 中
- return depth;
- }
- int maxDepth(TreeNode* root) {
- return getdepth(root);
- }
- };
代码精简之后c++代码如下:
- class solution {
- public:
- int maxDepth(TreeNode* root) {
- if (root == null) return 0;
- return 1 + max(maxDepth(root->left), maxDepth(root->right));
- }
- };
-
精简之后的代码根本看不出是哪种遍历方式,也看不出递归三部曲的步骤,所以如果对二叉树的操作还不熟练,尽量不要直接照着精简代码来学。
本题当然也可以使用前序,代码如下:(充分表现出求深度回溯的过程)
- class solution {
- public:
- int result;
- void getdepth(TreeNode* node, int depth) {
- result = depth > result ? depth : result; // 中
-
- if (node->left == NULL && node->right == NULL) return ;
-
- if (node->left) { // 左
- depth++; // 深度+1
- getdepth(node->left, depth);
- depth--; // 回溯,深度-1
- }
- if (node->right) { // 右
- depth++; // 深度+1
- getdepth(node->right, depth);
- depth--; // 回溯,深度-1
- }
- return ;
- }
- int maxDepth(TreeNode* root) {
- result = 0;
- if (root == NULL) return result;
- getdepth(root, 1);
- return result;
- }
- };
可以看出使用了前序(中左右)的遍历顺序,这才是真正求深度的逻辑!
注意以上代码是为了把细节体现出来,简化一下代码如下:
- class solution {
- public:
- int result;
- void getdepth(TreeNode* node, int depth) {
- result = depth > result ? depth : result; // 中
- if (node->left == NULL && node->right == NULL) return ;
- if (node->left) { // 左
- getdepth(node->left, depth + 1);
- }
- if (node->right) { // 右
- getdepth(node->right, depth + 1);
- }
- return ;
- }
- int maxDepth(TreeNode* root) {
- result = 0;
- if (root == 0) return result;
- getdepth(root, 1);
- return result;
- }
- };
使用迭代法的话,使用层序遍历是最为合适的,因为最大的深度就是二叉树的层数,和层序遍历的方式极其吻合。
在二叉树中,一层一层的来遍历二叉树,记录一下遍历的层数就是二叉树的深度,如图所示:
所以这道题的迭代法就是一道模板题,可以使用二叉树层序遍历的模板来解决的。
如果对层序遍历还不清楚的话,可以看这篇:二叉树:层序遍历登场!
c++代码如下:
- class solution {
- public:
- int maxDepth(TreeNode* root) {
- if (root == NULL) return 0;
- int depth = 0;
- queue<TreeNode*> que;
- que.push(root);
- while(!que.empty()) {
- int size = que.size();
- depth++; // 记录深度
- for (int i = 0; i < size; i++) {
- TreeNode* node = que.front();
- que.pop();
- if (node->left) que.push(node->left);
- if (node->right) que.push(node->right);
- }
- }
- return depth;
- }
- };
依然可以提供递归法和迭代法,来解决这个问题,思路是和二叉树思路一样的,直接给出代码如下:
c++代码:
- class solution {
- public:
- int maxDepth(Node* root) {
- if (root == 0) return 0;
- int depth = 0;
- for (int i = 0; i < root->children.size(); i++) {
- depth = max (depth, maxDepth(root->children[i]));
- }
- return depth + 1;
- }
- };
这段代码是一个递归函数,其作用是计算一个树的最大深度。
其中,树的节点类型为Node,每个节点包含一个children属性,表示该节点的子节点。函数的参数root表示树的根节点。
代码的逻辑如下:
这个算法的思路是自顶向下地计算树的深度,每次递归都会将问题的规模缩小为子树的深度计算,直到遍历完所有节点后返回结果。最终得到的结果就是整个树的最大深度。
依然是层序遍历,代码如下:
- class solution {
- public:
- int maxDepth(Node* root) {
- queue<Node*> que;
- if (root != NULL) que.push(root);
- int depth = 0;
- while (!que.empty()) {
- int size = que.size();
- depth++; // 记录深度
- for (int i = 0; i < size; i++) {
- Node* node = que.front();
- que.pop();
- for (int j = 0; j < node->children.size(); j++) {
- if (node->children[j]) que.push(node->children[j]);
- }
- }
- }
- return depth;
- }
- };
看完了这篇104.二叉树的最大深度
(opens new window),再来看看如何求最小深度。
直觉上好像和求最大深度差不多,其实还是差不少的。
本题依然是前序遍历和后序遍历都可以,前序求的是深度,后序求的是高度。
那么使用后序遍历,其实求的是根节点到叶子节点的最小距离,就是求高度的过程,不过这个最小距离 也同样是最小深度。
以下讲解中遍历顺序上依然采用后序遍历(因为要比较递归返回之后的结果,本文我也给出前序遍历的写法)。
本题还有一个误区,在处理节点的过程中,最大深度很容易理解,最小深度就不那么好理解,如图:
这就重新审题了,题目中说的是:最小深度是从根节点到最近叶子节点的最短路径上的节点数量。,注意是叶子节点。
什么是叶子节点,左右孩子都为空的节点才是叶子节点!
来来来,一起递归三部曲:
参数为要传入的二叉树根节点,返回的是int类型的深度。
代码如下:
- int getDepth(TreeNode* node)
终止条件也是遇到空节点返回0,表示当前节点的高度为0。
代码如下:
if (node == NULL) return 0;
这块和求最大深度可就不一样了,一些同学可能会写如下代码:
- int leftDepth = getDepth(node->left);
- int rightDepth = getDepth(node->right);
- int result = 1 + min(leftDepth, rightDepth);
- return result;
这个代码就犯了此图中的误区:
如果这么求的话,没有左孩子的分支会算为最短深度。
所以,如果左子树为空,右子树不为空,说明最小深度是 1 + 右子树的深度。
反之,右子树为空,左子树不为空,最小深度是 1 + 左子树的深度。 最后如果左右子树都不为空,返回左右子树深度最小值 + 1 。
代码如下:
- int leftDepth = getDepth(node->left); // 左
- int rightDepth = getDepth(node->right); // 右
- // 中
- // 当一个左子树为空,右不为空,这时并不是最低点
- if (node->left == NULL && node->right != NULL) {
- return 1 + rightDepth;
- }
- // 当一个右子树为空,左不为空,这时并不是最低点
- if (node->left != NULL && node->right == NULL) {
- return 1 + leftDepth;
- }
- int result = 1 + min(leftDepth, rightDepth);
- return result;
遍历的顺序为后序(左右中),可以看出:求二叉树的最小深度和求二叉树的最大深度的差别主要在于处理左右孩子不为空的逻辑。
整体递归代码如下:
- class Solution {
- public:
- int getDepth(TreeNode* node) {
- if (node == NULL) return 0;
- int leftDepth = getDepth(node->left); // 左
- int rightDepth = getDepth(node->right); // 右
- // 中
- // 当一个左子树为空,右不为空,这时并不是最低点
- if (node->left == NULL && node->right != NULL) {
- return 1 + rightDepth;
- }
- // 当一个右子树为空,左不为空,这时并不是最低点
- if (node->left != NULL && node->right == NULL) {
- return 1 + leftDepth;
- }
- int result = 1 + min(leftDepth, rightDepth);
- return result;
- }
-
- int minDepth(TreeNode* root) {
- return getDepth(root);
- }
- };
精简之后代码如下:
- class Solution {
- public:
- int minDepth(TreeNode* root) {
- if (root == NULL) return 0;
- if (root->left == NULL && root->right != NULL) {
- return 1 + minDepth(root->right);
- }
- if (root->left != NULL && root->right == NULL) {
- return 1 + minDepth(root->left);
- }
- return 1 + min(minDepth(root->left), minDepth(root->right));
- }
- };
精简之后的代码根本看不出是哪种遍历方式,所以依然还要强调一波:如果对二叉树的操作还不熟练,尽量不要直接照着精简代码来学。
前序遍历的方式:
- class Solution {
- private:
- int result;
- void getdepth(TreeNode* node, int depth) {
- // 函数递归终止条件
- if (root == nullptr) {
- return;
- }
- // 中,处理逻辑:判断是不是叶子结点
- if (root -> left == nullptr && root->right == nullptr) {
- res = min(res, depth);
- }
- if (node->left) { // 左
- getdepth(node->left, depth + 1);
- }
- if (node->right) { // 右
- getdepth(node->right, depth + 1);
- }
- return ;
- }
-
- public:
- int minDepth(TreeNode* root) {
- if (root == nullptr) {
- return 0;
- }
- result = INT_MAX;
- getdepth(root, 1);
- return result;
- }
- };
相对于104.二叉树的最大深度
(opens new window),本题还可以使用层序遍历的方式来解决,思路是一样的。
如果对层序遍历还不清楚的话,可以看这篇:二叉树:层序遍历登场!
需要注意的是,只有当左右孩子都为空的时候,才说明遍历到最低点了。如果其中一个孩子不为空则不是最低点
代码如下:(详细注释)
- class Solution {
- public:
-
- int minDepth(TreeNode* root) {
- if (root == NULL) return 0;
- int depth = 0;
- queue<TreeNode*> que;
- que.push(root);
- while(!que.empty()) {
- int size = que.size();
- depth++; // 记录最小深度
- for (int i = 0; i < size; i++) {
- TreeNode* node = que.front();
- que.pop();
- if (node->left) que.push(node->left);
- if (node->right) que.push(node->right);
- if (!node->left && !node->right) { // 当左右孩子都为空的时候,说明是最低点的一层了,退出
- return depth;
- }
- }
- }
- return depth;
- }
- };
本篇给出按照普通二叉树的求法以及利用完全二叉树性质的求法。
首先按照普通二叉树的逻辑来求。
这道题目的递归法和求二叉树的深度写法类似, 而迭代法,二叉树:层序遍历登场!
(opens new window)遍历模板稍稍修改一下,记录遍历的节点数量就可以了。
递归遍历的顺序依然是后序(左右中)。
如果对求二叉树深度还不熟悉的话,看这篇:二叉树:看看这些树的最大深度
代码如下:
int getNodesNum(TreeNode* cur) {
代码如下:
if (cur == NULL) return 0;
代码如下:
- int leftNum = getNodesNum(cur->left); // 左
- int rightNum = getNodesNum(cur->right); // 右
- int treeNum = leftNum + rightNum + 1; // 中
- return treeNum;
所以整体C++代码如下:
- // 版本一
- class Solution {
- private:
- int getNodesNum(TreeNode* cur) {
- if (cur == NULL) return 0;
- int leftNum = getNodesNum(cur->left); // 左
- int rightNum = getNodesNum(cur->right); // 右
- int treeNum = leftNum + rightNum + 1; // 中
- return treeNum;
- }
- public:
- int countNodes(TreeNode* root) {
- return getNodesNum(root);
- }
- };
代码精简之后C++代码如下:
- // 版本二
- class Solution {
- public:
- int countNodes(TreeNode* root) {
- if (root == NULL) return 0;
- return 1 + countNodes(root->left) + countNodes(root->right);
- }
- };
网上基本都是这个精简的代码版本,其实不建议大家照着这个来写,代码确实精简,但隐藏了一些内容,连遍历的顺序都看不出来,所以初学者建议学习版本一的代码,稳稳的打基础。
如果对求二叉树层序遍历还不熟悉的话,看这篇:二叉树:层序遍历登场!
那么只要模板少做改动,加一个变量result,统计节点数量就可以了
- class Solution {
- public:
- int countNodes(TreeNode* root) {
- queue<TreeNode*> que;
- if (root != NULL) que.push(root);
- int result = 0;
- while (!que.empty()) {
- int size = que.size();
- for (int i = 0; i < size; i++) {
- TreeNode* node = que.front();
- que.pop();
- result++; // 记录节点数量
- if (node->left) que.push(node->left);
- if (node->right) que.push(node->right);
- }
- }
- return result;
- }
- };
以上方法都是按照普通二叉树来做的,对于完全二叉树特性不了解的同学可以看这篇 关于二叉树,你该了解这些!
(opens new window),这篇详细介绍了各种二叉树的特性。
在完全二叉树中,除了最底层节点可能没填满外,其余每层节点数都达到最大值,并且最下面一层的节点都集中在该层最左边的若干位置。若最底层为第 h 层,则该层包含 1~ 2^(h-1) 个节点。
大家要自己看完全二叉树的定义,很多同学对完全二叉树其实不是真正的懂了。
我来举一个典型的例子如题:
完全二叉树只有两种情况,情况一:就是满二叉树,情况二:最后一层叶子节点没有满。
对于情况一,可以直接用 2^树深度 - 1 来计算,注意这里根节点深度为1。
对于情况二,分别递归左孩子,和右孩子,递归到某一深度一定会有左孩子或者右孩子为满二叉树,然后依然可以按照情况1来计算。
完全二叉树(一)如图:
完全二叉树(二)如图:
可以看出如果整个树不是满二叉树,就递归其左右孩子,直到遇到满二叉树为止,用公式计算这个子树(满二叉树)的节点数量。
这里关键在于如何去判断一个左子树或者右子树是不是满二叉树呢?
在完全二叉树中,如果递归向左遍历的深度等于递归向右遍历的深度,那说明就是满二叉树。如图:
在完全二叉树中,如果递归向左遍历的深度不等于递归向右遍历的深度,则说明不是满二叉树,如图:
那有录友说了,这种情况,递归向左遍历的深度等于递归向右遍历的深度,但也不是满二叉树,如题:
如果这么想,大家就是对 完全二叉树理解有误区了,以上这棵二叉树,它根本就不是一个完全二叉树!
判断其子树是不是满二叉树,如果是则利用公式计算这个子树(满二叉树)的节点数量,如果不是则继续递归,那么 在递归三部曲中,第二部:终止条件的写法应该是这样的:
- if (root == nullptr) return 0;
- // 开始根据左深度和右深度是否相同来判断该子树是不是满二叉树
- TreeNode* left = root->left;
- TreeNode* right = root->right;
- int leftDepth = 0, rightDepth = 0; // 这里初始为0是有目的的,为了下面求指数方便
- while (left) { // 求左子树深度
- left = left->left;
- leftDepth++;
- }
- while (right) { // 求右子树深度
- right = right->right;
- rightDepth++;
- }
- if (leftDepth == rightDepth) {
- return (2 << leftDepth) - 1; // 注意(2<<1) 相当于2^2,返回满足满二叉树的子树节点数量
- }
递归三部曲,第三部,单层递归的逻辑:(可以看出使用后序遍历)
- int leftTreeNum = countNodes(root->left); // 左
- int rightTreeNum = countNodes(root->right); // 右
- int result = leftTreeNum + rightTreeNum + 1; // 中
- return result;
该部分精简之后代码为:
return countNodes(root->left) + countNodes(root->right) + 1;
最后整体C++代码如下:
- class Solution {
- public:
- int countNodes(TreeNode* root) {
- if (root == nullptr) return 0;
- TreeNode* left = root->left;
- TreeNode* right = root->right;
- int leftDepth = 0, rightDepth = 0; // 这里初始为0是有目的的,为了下面求指数方便
- while (left) { // 求左子树深度
- left = left->left;
- leftDepth++;
- }
- while (right) { // 求右子树深度
- right = right->right;
- rightDepth++;
- }
- if (leftDepth == rightDepth) {
- return (2 << leftDepth) - 1; // 注意(2<<1) 相当于2^2,所以leftDepth初始为0
- }
- return countNodes(root->left) + countNodes(root->right) + 1;
- }
- };
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。