码迷,mamicode.com
首页 > 编程语言 > 详细

数据结构与算法-第12章二叉树和其他树-003求二叉树的高度

时间:2016-03-19 17:40:59      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:

The code to find the tree height using a postorder traversal is given below.

 1 public class BinaryTreeHeight
 2 {
 3    /** @return tree height */
 4    public static int height(BinaryTreeNode t)
 5    {
 6       if (t != null)
 7       {// nonempty tree
 8          // find height of left subtree
 9          int hLeft = height(t.leftChild);
10 
11          // find height of right subtree
12          int hRight = height(t.rightChild);
13 
14          // return overall height
15          return Math.max(hLeft, hRight) + 1;
16       }
17       else
18          return 0;
19    }
20 }

 

数据结构与算法-第12章二叉树和其他树-003求二叉树的高度

标签:

原文地址:http://www.cnblogs.com/shamgod/p/5295580.html

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