[LeetCode] Minimum Depth of Binary Tree
生活随笔
收集整理的這篇文章主要介紹了
[LeetCode] Minimum Depth of Binary Tree
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Given a binary tree, find its minimum depth.
The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.
二叉樹的最小深度。
使用遞歸求解:
如果根節點為空,返回0。
如果左節點為空,遞歸計算右節點。
如果右節點為空,遞歸計算左節點。
返回1 + 左子樹和右子樹的最小深度。
/*** 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 minDepth(TreeNode* root) {if (root == nullptr)return 0;if (root->left == nullptr)return 1 + minDepth(root->right);if (root->right == nullptr)return 1 + minDepth(root->left);return 1 + min(minDepth(root->left), minDepth(root->right));} }; // 6 ms?
轉載于:https://www.cnblogs.com/immjc/p/7682184.html
創作挑戰賽新人創作獎勵來咯,堅持創作打卡瓜分現金大獎總結
以上是生活随笔為你收集整理的[LeetCode] Minimum Depth of Binary Tree的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 配置 CentOS 7 的网络,及重命名
- 下一篇: Donsen法则