【二叉树】【DFS】104.二叉树的最大深度

题目

法1:DFS

class Solution {
    public int maxDepth(TreeNode root) {
        if (root == null) {
            return 0;
        } else if (root.left == null && root.right == null) {
            return 1;
        } else {
            return Math.max(maxDepth(root.left), maxDepth(root.right)) + 1;
        }
    }
}

你可能感兴趣的:(dfs)