day16 | 二叉树3

引言

  • 104.二叉树的最大深度
  • 559.n叉树的最大深度
  • 111.二叉树的最小深度
  • 222.完全二叉树的节点个数

1.# 二叉树的最大深度

Category Difficulty Likes Dislikes
algorithms Easy (77.14%) 1542 -

给定一个二叉树,找出其最大深度。

二叉树的深度为根节点到最远叶子节点的最长路径上的节点数。

说明: 叶子节点是指没有子节点的节点。

示例:
给定二叉树 [3,9,20,null,null,15,7]

    3
   / \
  9  20
    /  \
   15   7

返回它的最大深度 3 。


Discussion | Solution

1.1.递归法

前序遍历:

class Solution {
 public:
  int maxDepth(TreeNode* root) {
    int depth = 0;
    dfs(root, 0, depth);
    return depth;
  }

 private:
  // 前序遍历,一层一层的深入,参数使用引用进行深入,不需要返回值,从根节点开始计数
  void dfs(TreeNode* node, int cur_depth, int& depth) {
    if (nullptr == node) {
      depth = std::max(cur_depth, depth);
      return;
    }
    dfs(node->left, cur_depth + 1, depth);  // 隐式回归,注意不能使用depth++
    dfs(node->right, cur_depth + 1, depth);
  }
};

后序遍历:

class Solution {
 public:
  int maxDepth(TreeNode* root) { return dfs(root); }

 private:
  // 后序遍历,类似于触底反弹,最底层开始计数
  int dfs(TreeNode* node) {
    if (nullptr == node) {
      return 0;
    }
    int left_depth = 1 + dfs(node->left);
    int right_depth = 1 + dfs(node->right);
    return std::max(left_depth, right_depth);
  }
};

1.2.迭代法

一共有多少层,就有多深,层序遍历:

class Solution {
 public:
  int maxDepth(TreeNode* root) {
    if (nullptr == root) return 0;
    std::queue<TreeNode*> que;
    que.push(root);
    int depth = 0;
    while (!que.empty()) {
      depth++;
      for (int i = que.size(); i > 0; i--) {
        TreeNode* cur = que.front();
        que.pop();
        if (cur->left) que.push(cur->left);
        if (cur->right) que.push(cur->right);
      }
    }
    return depth;
  }
};

2.N 叉树的最大深度

Category Difficulty Likes Dislikes
algorithms Easy (74.88%) 333 -

给定一个 N 叉树,找到其最大深度。

最大深度是指从根节点到最远叶子节点的最长路径上的节点总数。

N 叉树输入按层序遍历序列化表示,每组子节点由空值分隔(请参见示例)。

示例 1:

image.png
输入:root = [1,null,3,2,4,null,5,6]
输出:3

示例 2:

image.png
输入:root = [1,null,2,3,4,5,null,null,6,7,null,8,null,9,10,null,null,11,null,12,null,13,null,null,14]
输出:5

提示:

  • 树的深度不会超过 1000
  • 树的节点数目位于 [0, 10<sup>4</sup>] 之间。

Discussion | Solution

2.1.递归法

class Solution {
 public:
  int maxDepth(Node* root) {
    int depth = 0;
    dfs(root, 1, depth);
    return depth;
  }

 private:
  // 前序遍历,从根节点开始计数
  void dfs(Node* node, int cur_depth, int& depth) {
    if (nullptr == node) {
      // 特别小心,这次不能写在这里,因为nullptr没有存入vector中,永远不会进入这里
      // depth = std::max(cur_depth, depth);
      return;
    }
    depth = std::max(cur_depth, depth);
    for (auto child : node->children) {
      dfs(child, cur_depth + 1, depth);
    }
  }
};

因为nullptr没有存入vector中,所以也就不能使用触底反弹的后序遍历进行统计。、

2.2.迭代法

同样使用层序遍历:

class Solution {
 public:
  int maxDepth(Node* root) {
    int depth = 0;
    std::queue<Node*> que;
    if (root != nullptr) que.push(root);
    while (!que.empty()) {
      depth++;
      for (int i = que.size(); i > 0; i--) {
        Node* cur = que.front();
        que.pop();
        for (auto& child : cur->children) {
          que.push(child);
        }
      }
    }
    return depth;
  }
};

3. 二叉树的最小深度

Category Difficulty Likes Dislikes
algorithms Easy (51.72%) 952 -

给定一个二叉树,找出其最小深度。

最小深度是从根节点到最近叶子节点的最短路径上的节点数量。

说明:叶子节点是指没有子节点的节点。

示例 1:

image.png
输入:root = [3,9,20,null,null,15,7]
输出:2

示例 2:

输入:root = [2,null,3,null,4,null,5,null,6]
输出:5

提示:

  • 树中节点数的范围在 [0, 10<sup>5</sup>]
  • -1000 <= Node.val <= 1000

Discussion | Solution

3.1.迭代法

前序遍历:

class Solution {
 public:
  int minDepth(TreeNode* root) {
    if (root == nullptr) return 0;
    int depth = std::numeric_limits<int>::max();
    dfs(root, 1, depth);
    return depth;
  }

 private:
  // 前序遍历:根节点开始计数,引用传递参数
  void dfs(TreeNode* node, int depth, int& min_depth) {
    // 注意终止条件
    if (node->left == nullptr && node->right == nullptr) {
      min_depth = std::min(depth, min_depth);
      return;
    }
    if (node->left) dfs(node->left, depth + 1, min_depth);
    if (node->right) dfs(node->right, depth + 1, min_depth);
  }
};

后序遍历:

class Solution {
 public:
  int minDepth(TreeNode* root) {
    if (root == nullptr) return 0;
    return dfs(root);
  }

 private:
  // 后序遍历:触底反弹
  int dfs(TreeNode* node) {
    // 注意终止条件
    if (node->left == nullptr && node->right == nullptr) {
      return 1;
    }
    int left_depth = std::numeric_limits<int>::max();
    int right_depth = std::numeric_limits<int>::max();
    if (node->left) left_depth = 1 + dfs(node->left);
    if (node->right) right_depth = 1 + dfs(node->right);
    return std::min(left_depth, right_depth);
  }
};

3.2.迭代法

依然是层序遍历:

class Solution {
 public:
  int minDepth(TreeNode* root) {
    if (root == nullptr) return 0;
    int min_depth = 0;
    std::queue<TreeNode*> que;
    que.push(root);
    while (!que.empty()) {
      min_depth++;
      for (int i = que.size(); i > 0; i--) {
        TreeNode* cur = que.front();
        que.pop();
        if (cur->left) que.push(cur->left);
        if (cur->right) que.push(cur->right);
        if (cur->left == nullptr && cur->right == nullptr) {
          return min_depth;
        }
      }
    }
    return min_depth;
  }
};

4. 完全二叉树的节点个数

Category Difficulty Likes Dislikes
algorithms Medium (80.75%) 897 -

给你一棵** 完全二叉树** 的根节点 root ,求出该树的节点个数。

完全二叉树 的定义如下:在完全二叉树中,除了最底层节点可能没填满外,其余每层节点数都达到最大值,并且最下面一层的节点都集中在该层最左边的若干位置。若最底层为第 h 层,则该层包含 1~ 2<sup>h</sup> 个节点。

示例 1:

image.png
输入:root = [1,2,3,4,5,6]
输出:6

示例 2:

输入:root = []
输出:0

示例 3:

输入:root = [1]
输出:1

提示:

  • 树中节点的数目范围是[0, 5 * 10<sup>4</sup>]
  • 0 <= Node.val <= 5 * 10<sup>4</sup>
  • 题目数据保证输入的树是 完全二叉树

进阶:遍历树来统计节点是一种时间复杂度为 O(n) 的简单解决方案。你可以设计一个更快的算法吗?


Discussion | Solution

4.1.暴力法

不管用什么遍历方式,遍历一遍进行统计:

class Solution {
 public:
  int countNodes(TreeNode* root) {
    int num = 0;
    dfs(root, num);
    return num;
  }
 private:
  void dfs(TreeNode* node, int& num) {
    if (node == nullptr) return;
    num++;
    dfs(node->left, num);
    dfs(node->right, num);
  }
};

4.2.参考思想及代码实现

以左子树和右子树的思想进行解题:

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);
    }
};
image.png
class Solution {
 public:
  int countNodes(TreeNode* root) {
    if (root == nullptr) return 0;
    TreeNode* left = root->left;
    TreeNode* right = root->right;
    // 这里初始为0是有目的的,为了下面求指数方便
    int leftDepth = 0, 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;
  }
};
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,056评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,842评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,938评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,296评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,292评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,413评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,824评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,493评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,686评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,502评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,553评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,281评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,820评论 3 305
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,873评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,109评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,699评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,257评论 2 341

推荐阅读更多精彩内容