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

剑指offer55题

时间:2017-08-26 13:39:11      阅读:114      评论:0      收藏:0      [点我收藏+]

标签:root   log   com   依次   ret   binary   create   algorithm   最长路径   

输入一棵二叉树,求该树的深度。从根结点到叶结点依次经过的结点(含根、叶结点)形成树的一条路径,最长路径的长度为树的深度。

package com.algorithm05;

import com.tools.TreeBinaryFunction;
import com.tools.TreeNode;

public class Algorithm55 {

	public static int TreeDepth(TreeNode root) {
        
		if(root==null)
			return 0;
		int left,right;
		left = TreeDepth(root.left);
		right = TreeDepth(root.right);
		
		return (left>right)?(left+1):(right+1);
    }
	public static void main(String[] args) {
		TreeNode treeNode = new TreeNode(0);
		TreeBinaryFunction.CreateTreeBinary(treeNode);
		System.err.println(TreeDepth(treeNode));
	}
}

  

剑指offer55题

标签:root   log   com   依次   ret   binary   create   algorithm   最长路径   

原文地址:http://www.cnblogs.com/CloudStrife/p/7434981.html

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