牛客最菜男人
牛客最菜男人
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客最菜男人的博客
全部文章
/ 题解
(共3篇)
剑指offer 二叉平衡树
双重递归(利用上一题的结果) public class Solution { public int TreeDepth(TreeNode root) { if (root == null) return 0; return 1 + Math.max(TreeD...
剑指offer
二叉树
2020-04-02
3
1071
剑指offer 二叉树的深度
两行代码 public class Solution { public int TreeDepth(TreeNode root) { if (root == null) return 0; return 1 + Math.max(TreeDepth(root....
剑指offer
二叉树
2020-04-02
3
690
剑指offer 树的子结构
HasSubtree函数功能:排除题目约定,直接调用HasSubtree2函数 HasSubtree2函数功能:递归查找树root1中是否含有树root2结构 HasSubtree3函数功能:递归判断树root1是否是树root2的延申(包含两种情况:1.root1和root2完全相同;2.root...
剑指offer
二叉树
树的子结构
2020-03-15
4
824