104. Maximum Depth of Binary Tree

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.

 

 public int MaxDepth(TreeNode root) {
        if(root == null) return 0;
        return Math.Max(MaxDepth(root.left)+1,MaxDepth(root.right)+1 );
    }

 

posted @ 2016-09-11 22:29  咖啡中不塌缩的方糖  阅读(98)  评论(0编辑  收藏  举报