开始cpp刷题之旅。
目标:执行用时击败90%以上使用 C++ 的用户。
给定一个二叉树,找出其最小深度。
最小深度是从根节点到最近叶子节点的最短路径上的节点数量。
说明:叶子节点是指没有子节点的节点。
示例 1:
输入:root = [3,9,20,null,null,15,7]
输出:2
示例 2:
输入:root = [2,null,3,null,4,null,5,null,6]
输出:5
二叉树的题目,还是老思路。
当节点为空时,直接返回0;
当左节点为空、右节点不为空时,将右节点递归求其最小值,加上根节点1;
当右节点为空、左节点不为空时,同上。
当左右节点都不为空时,返回左节点和右节点中小的 那个值加上根节点1。
class Solution {
public:
int minDepth(TreeNode* root) {
if(!root) return 0;
if(!root->left) return minDepth(root->right)+1;
if(!root->right) return minDepth(root->left) +1;
return min(minDepth(root->left),minDepth(root->right))+1;
}
};
看一下提交记录。
OK,perfect。