力扣hot100 二叉树的最大深度 dfs

发布时间:2024年01月03日

👨?🏫 题目地址

😋 AC code

/**
 * Definition for a binary tree node.
 * public class TreeNode {
 *     int val;
 *     TreeNode left;
 *     TreeNode right;
 *     TreeNode() {}
 *     TreeNode(int val) { this.val = val; }
 *     TreeNode(int val, TreeNode left, TreeNode right) {
 *         this.val = val;
 *         this.left = left;
 *         this.right = right;
 *     }
 * }
 */
class Solution {
	public int maxDepth(TreeNode root)
	{
		int d = 1;
		if (root == null)
			return 0;
		int max = 0;
		if (root.right != null)
			max = Math.max(maxDepth(root.right), max);
		if (root.left != null)
			max = Math.max(maxDepth(root.left), max);

		return d + max;
	}
}
文章来源:https://blog.csdn.net/lt6666678/article/details/135371156
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。