LeetCode 111. 二叉树的最小深度
Posted shixinzei
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 111. 二叉树的最小深度相关的知识,希望对你有一定的参考价值。
题目链接:https://leetcode-cn.com/problems/minimum-depth-of-binary-tree/
给定一个二叉树,找出其最小深度。
最小深度是从根节点到最近叶子节点的最短路径上的节点数量。
说明: 叶子节点是指没有子节点的节点。
示例:
给定二叉树 [3,9,20,null,null,15,7],
3
/ \
9 20
/ \
15 7
返回它的最小深度 2.
1 /** 2 * Definition for a binary tree node. 3 * struct TreeNode 4 * int val; 5 * struct TreeNode *left; 6 * struct TreeNode *right; 7 * ; 8 */ 9 int minDepth(struct TreeNode* root) 10 if(root==NULL) return 0; 11 if(root->left==NULL&&root->right==NULL) return 1; 12 if(root->left==NULL&&root->right!=NULL) return 1+minDepth(root->right); 13 if(root->left!=NULL&&root->right==NULL) return 1+minDepth(root->left); 14 return minDepth(root->left)<minDepth(root->right)?minDepth(root->left)+1:minDepth(root->right)+1; 15
以上是关于LeetCode 111. 二叉树的最小深度的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode Java刷题笔记—111. 二叉树的最小深度