美文网首页
leetcode第104题二叉树深度

leetcode第104题二叉树深度

作者: CoderAPang | 来源:发表于2018-06-19 13:52 被阅读0次
    /**
     * 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;
            if(root.left==null&&root.right==null)return 1;
            int leftDepth = 0;
            int rightDepth = 0;
            if(root.left!=null)leftDepth = maxDepth(root.left);
            if(root.right!=null)rightDepth = maxDepth(root.right);
            
            return leftDepth>rightDepth?leftDepth+1:rightDepth+1;
        }
    }
    

    相关文章

      网友评论

          本文标题:leetcode第104题二叉树深度

          本文链接:https://www.haomeiwen.com/subject/fxuaeftx.html