码迷,mamicode.com
首页 > 其他好文 > 详细

递归的应用--求二叉树最大深度和最小深度

时间:2014-09-24 16:09:37      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:递归   二叉树   

【求最大深度】Given a binary tree, find its maximum depth.

The maximum depth is the number of nodes along the longest path from the root node down to the farthest leaf node.

这里说的最大深度是指最深叶子节点到根节点的路径长度

<span style="font-size:18px;">	 public static int maxDepth(TreeNode root) {
		 if(root==null)return 0;
		 if(root.right==null && root.left==null)return 1;
		 else return 1+Math.max(maxDepth(root.right), maxDepth(root.left)); 
	    }</span>

【求最小深度】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.

这里说的最小深度是指最浅叶子节点到根节点的路径长度,求最小深度相对最大深度来讲要麻烦一点点。

<span style="font-size:18px;"> public static int minDepth(TreeNode root) {
		 if(root==null)return 0;
		 if(root.right==null && root.left==null)//没有子节点
		 {
			 return 1;
		 }
		 else if(root.right!=null && root.left!=null)//左右儿子都存在
		 {
			return Math.min( 1+minDepth(root.left),1+minDepth(root.right));

		 }
		 else if(root.right==null)//只有左儿子
		 { 
			 return 1+minDepth(root.left);
		 }
		 else 
		 { 
			 return 1+minDepth(root.right);//只有右儿子
		 }
	 }</span>


递归的应用--求二叉树最大深度和最小深度

标签:递归   二叉树   

原文地址:http://blog.csdn.net/dhc123321/article/details/39521633

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!