104. 二叉树的最大深度

104. 二叉树的最大深度

JAVA版本

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode(int x) { val = x; }
 * }
 */
class Solution {
    public int maxDepth(TreeNode root) {
        if(root == null){
            return 0;
        }else if (root.left == null && root.right == null){
            return 1;
        }else{
            int left = maxDepth(root.left);
            int right = maxDepth(root.right);
            int tmp =  (left > right ? left : right);
            return ++tmp ;
        }
    }
}
---------------------
作者:Npcccccc
来源:CSDN
原文:https://blog.csdn.net/qq_28018283/article/details/82877946
版权声明:本文为博主原创文章,转载请附上博文链接!

posted @ 2019-07-28 10:43  天涯海角路  阅读(98)  评论(0)    收藏  举报