会员
周边
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
jchen104
博客园
首页
新随笔
联系
订阅
管理
2021年5月5日
543. 二叉树的直径
摘要: 使用DFS求解 时间O(n),空间O(h)(h为整棵树的深度) 1 class Solution { 2 int res=0; 3 public int diameterOfBinaryTree(TreeNode root) { 4 def(root); 5 return res; 6 } 7 8
阅读全文
posted @ 2021-05-05 17:07 jchen104
阅读(59)
评论(0)
推荐(0)
公告