ziffer
ziffer
全部文章
分类
题解(3)
归档
标签
去牛客网
登录
/
注册
ziffer的博客
全部文章
(共1篇)
题解 | #二叉树的深度#递归一行代码
public class Solution { public int TreeDepth(TreeNode root) { return root == null ? 0 : Math.max(TreeDepth(root.left), TreeDepth(root.righ...
java
二叉树
递归
2021-07-21
13
954