牛客4913417
牛客4913417
全部文章
分类
题解(36)
归档
标签
去牛客网
登录
/
注册
牛客4913417的博客
全部文章
(共6篇)
根节点到叶子节点的节点值之和等于\ sum sum
public ArrayList<ArrayList<Integer>> pathSum (TreeNode root, int sum) { // write code here ArrayList<Integer> list =...
递归
二叉树
2021-02-18
0
687
输出二叉树的右视图
//分两步,第一步重建二叉树,第二步,层序遍历二叉树,取每一层最右边的节点即为右视图 public int[] solve (int[] xianxu, int[] zhongxu) { // write code here TreeNode root = reBui...
二叉树
右视图
2021-02-14
0
609
重建二叉树
public TreeNode reConstructBinaryTree(int [] pre,int [] in) { if (pre==null || in==null) return null; return dfs(pre,0,pre.length-1,in...
二叉树
重建
2021-02-07
0
485
二叉树之字形层序遍历
public ArrayList<ArrayList<Integer>> zigzagLevelOrder (TreeNode root) { // write code here ArrayList<ArrayList<Integ...
翻转
层序遍历
二叉树
2021-02-07
1
582
在二叉树中找两个节点的最近公共祖先
public int lowestCommonAncestor (TreeNode root, int o1, int o2) { // write code here TreeNode res = dfs(root,o1,o2); if (res==...
公共祖先
二叉树
2021-02-05
0
532
二叉树的层次遍历
//注意的就是在循环中最后不要以queue.size()作为条件,因为有add,poll操作 长度会变 public ArrayList<ArrayList<Integer>> levelOrder (TreeNode root) { // write cod...
二叉树
bfs
2021-01-27
0
512