首页 > 其他分享 >代码随想录训练营第十六天| 513. 找树左下角的值 112. 路径总和 106.从中序与后序遍历序列构造二叉树

代码随想录训练营第十六天| 513. 找树左下角的值 112. 路径总和 106.从中序与后序遍历序列构造二叉树

时间:2024-12-13 23:30:14浏览次数:14  
标签:right return int 随想录 二叉树 左下角 null root left

513. 找树左下角的值 

题目链接:513. 找树左下角的值 - 力扣(LeetCode)

讲解链接:代码随想录

 求最后一行最后一个左子节点的值 就是求二叉树深度最大的叶子节点

递归:

  1. 确定递归函数的参数和返回值

参数必须有要遍历的树的根节点,还有就是一个int型的变量用来记录最长深度。 这里就不需要返回值了,所以递归函数的返回类型为void。

本题还需要类里的两个全局变量,maxLen用来记录最大深度,result记录最大深度最左节点的数值。

代码如下:

int maxDepth = INT_MIN;   // 全局变量 记录最大深度
int result;       // 全局变量 最大深度最左节点的数值
void traversal(TreeNode* root, int depth)

2 .找到终止条件

当遇到叶子节点的时候,就需要统计一下最大的深度了,所以需要遇到叶子节点来更新最大深度。

代码如下:

if (root->left == NULL && root->right == NULL) {
    if (depth > maxDepth) {
        maxDepth = depth;           // 更新最大深度
        result = root->val;   // 最大深度最左面的数值
    }
    return;
}

3 .确定单层递归的逻辑 

在找最大深度的时候,递归的过程中依然要使用回溯,代码如下:

                    // 中
if (root->left) {   // 左
    depth++; // 深度加一
    traversal(root->left, depth);
    depth--; // 回溯,深度减一
}
if (root->right) { // 右
    depth++; // 深度加一
    traversal(root->right, depth);
    depth--; // 回溯,深度减一
}
return;

当然这道题其实用层序遍历更好做(队列迭代法) 只要找到深度最大的当然是用迭代好想

Java代码:

//递归
class Solution {
    private int Deep = -1;
    private int value = 0;
    public int findBottomLeftValue(TreeNode root) {
        value = root.val;
        findLeftValue(root,0);
        return value;
    }
    public void findLeftValue(TreeNode root,int deep){
        if(root == null) return;
        if(root.left == null && root.right == null){
            if(deep > Deep){
                value = root.val;
                Deep = deep;
            }
        }
        if(root.left != null) findLeftValue(root.left,deep + 1);
        if(root.right != null) findLeftValue(root.right, deep + 1);
    }
}
//迭代
class Solution{
    public int findBottomLeftValue(TreeNode root){
        Queue<TreeNode> q = new LinkedList<>();
        q.offer(root);
        int res = 0;
        while(q.isEmpty()){
            for(int i = 0; i < q.size(); i++){
                TreeNode node = q.poll();
                if(i == 0){
                    res = node.val;
                }
                if(node.left != null){
                    q.offer(node.left);
                }
                if(node.right != null){
                    q.offer(node.right);
                }
            }
        }
        return res;
    }
}

 112. 路径总和

题目链接:112. 路径总和 - 力扣(LeetCode)

讲解链接:拿不准的遍历顺序,搞不清的回溯过程,我太难了! | LeetCode:112. 路径总和

 给你二叉树的根节点 root 和一个表示目标和的整数 targetSum 。判断该树中是否存在 根节点到叶子节点 的路径,这条路径上所有节点值相加等于目标和 targetSum 。如果存在,返回 true ;否则,返回 false

Java代码:

class Solution {
    public boolean hasPathSum(TreeNode root, int targetSum) {
        if(root == null) return false;
        targetSum -= root.val;
        //判断叶子节点
        if (root.left == null && root.right == null) {
            return targetSum == 0;
        }
        if(root.left != null){
            boolean left = hasPathSum(root.left, targetSum);
            if (left) {
                //已经找到 left为true
                return true;
            }
        }
        if(root.right != null){
            boolean right = hasPathSum(root.right, targetSum);
            if(right){
                //已经找到
                return true;
            }
        }
        return false;
    }
}
//迭代
class Solution{
    public boolean hasPathSum(TreeNode root,int targetsum){
        if(root == null) return false;
        Stack<TreeNode> stack1 = new Stack<>();
        Stack<Integer> stack2 = new Stack<>();
        stack1.push(root);
        stack2.push(root.val);
        while(!stack1.isEmpty()){
            for(int i = 0; i < stack1.size(); i++){
                TreeNode node = stack1.pop();
                int sum = stack2.pop();
                //如果这个阶段是叶子结点 同时该节点的路径数值是sum 那就返回true
                if(node.left == null && node.right == null && sum == targetsum){
                    return true;
                }
                //右节点 压进去一个节点的时候 把该节点的路径数字化也记录下来
                if(node.right != null){
                    stack1.push(node.right);
                    stack2.push(sum + node.right.val);
                }
                //左节点 压进去一个节点的时候 把该节点的路径数值也记录下来
                if(node.left != null){
                    stack1.push(node.left);
                    stack2.push(sum + node.left.val);
                }
            }
        }
        return false;
    }
}

113 路径总和2 

这道题要求输出等于sum的路径

Java代码;

class Solution {
    public List<List<Integer>> pathSum(TreeNode root, int targetsum) {
        List<List<Integer>> res = new ArrayList<>();
        if(root == null) return res;
        List<Integer> path = new LinkedList<>();
        preorderdfs(root, targetsum, res, path);
        return res;
    }

    public void preorderdfs(TreeNode root, int targetsum, List<List<Integer>> res, List<Integer> path){
        path.add(root.val);
        //遇到叶子结点
        if(root.left == null && root.right == null){
            //找到了和为targetsum的路径
            if(targetsum - root.val == 0){
                res.add(new ArrayList<>(path));
            }
            return;//如果和不为targetsum 返回
        }
        if(root.left != null){
            preorderdfs(root.left, targetsum - root.val, res, path);
            path.remove(path.size() - 1);//回溯
        }
        if(root.right != null){
            preorderdfs(root.right, targetsum - root.val, res, path);
            path.remove(path.size() - 1);//回溯
        }
    }
}

另一种递归解法比较简洁

Java代码:

class Solution{
    List<List<Integer>> result;
    LinkedList<Integer> path ;
    public List<List<Integer>> pathSum(TreeNode root,int targetSum){
        result = new LinkedList<>();
        path = new LinkedList<>();
        travesal(root,targetSum);
        return result;
    }
    private void travesal(TreeNode root, int count){
        if(root == null) return;
        path.offer(root.val);
        count -= root.val;
        if(root.left == null && root.right == null && count == 0){
            result.add(new LinkedList<>(path));
        }
        travesal(root.left, count);
        travesal(root.right, count);
        path.removeLast();//回溯
    }
}

 106.从中序与后序遍历序列构造二叉树

题目链接:106. 从中序与后序遍历序列构造二叉树 - 力扣(LeetCode)

讲解链接:代码随想录

给定中序遍历和后序遍历的数组 构造二叉树

 先找后序遍历的最后一个节点 一定是中序遍历的中间根节点 然后在其下标进行左右子树的分割查找 再递归

Java代码:

class Solution{
    Map<Integer, Integer> map;//方便根据数值查找位置
    //中序遍历和后序遍历
    public TreeNode buildTree(int[] inorder, int[] postorder){
        map = new HashMap<>();
        for(int i = 0; i < inorder.length; i++){
            map.put(inorder[i],i);//放入中序遍历的键值对 前面是value 后面是key
        }
        //左闭右开
        return findNode(inorder, 0, inorder.length, postorder,0,postorder.length);
        //判断当前递归的是什么遍历  中序遍历 从0到其长度 后序遍历 从0到其length
    }

    public TreeNode findNode(int[] inorder, int inBegin, int inEnd,int[] postorder,int postBegin, int postEnd){
        if(inBegin >= inEnd || postBegin >= postEnd){
            ///不满足左闭右开 说明就没有元素 返回空
            return null;
        }
        int rootIndex = map.get(postorder[postEnd - 1]);
        //找到后序遍历的最后一个元素在中序遍历中的位置 方便分割
        TreeNode root = new TreeNode(inorder[rootIndex]);
        //找到根节点 分割点
        int lenOfLeft = rootIndex - inBegin;
        //保存中序遍历左子树的个数 用来确定后续数列的个数
        root.left = findNode(inorder, inBegin, rootIndex,
                postorder,postBegin,postBegin + lenOfLeft);//左子树递归
        root.right = findNode(inorder, rootIndex + 1, inEnd,
                postorder, postBegin + lenOfLeft, postEnd - 1);//右子树递归
        return root;
    }
}

 day16 

标签:right,return,int,随想录,二叉树,左下角,null,root,left
From: https://blog.csdn.net/chengooooooo/article/details/144427801

相关文章

  • 每日一刷——二叉树的构建——12.12
    第一题:最大二叉树题目描述:654.最大二叉树-力扣(LeetCode)我的想法:我感觉这个题目最开始大家都能想到的暴力做法就是遍历找到数组中的最大值,然后再遍历一遍,把在它左边的依次找到最大值,但是emmm,感觉效率很低,时间上肯定过不了然后其实我会觉得这个题目跟大根堆和小根堆有......
  • 数字组合转字母&删除二叉树节点&字符串相乘&打家劫舍ii&无序数组第k大 &无序数组前k大
    一、数字串转换为字符串1-26个数字分别代表26个字符(A-z)输入"12326〞就可以拆分为【1,2,3,2,6】、(12,3,2,6].[1,23,2,6]【1,23,26】、【12,3,26】等,将每种组合转成成对应字母输出,输出所有可能的结果返回所有可能的转换结果//将数字串转换成字母串//将数字串转换成字母......
  • 每日一刷——二叉树——12.09
    第一题:二叉树的层序遍历题目描述:102.二叉树的层序遍历-力扣(LeetCode)我的思路:拿到这个题目,我首先想到的是利用队列来模拟,给我二叉树的根节点,然后我来返回每一层的各个节点,但是为啥我甚至觉得这个题目给的输入就是按照层序遍历来给的呢??然后感觉还有一个点就是咋返回成几......
  • 线索二叉树——c语言详细注释版
        线索二叉树是一种特殊的二叉树,主要用于高效地实现树的遍历。与普通的二叉树相比,线索二叉树通过在节点中增加“线索”指针来简化遍历过程。值得注意的是,线索化二叉树的过程仍然需要使用递归,而后续遍历效率才会提高,适合一次构造,多次调用的场景。前言一般的二叉树在......
  • 二叉树篇
    classSolution{publicTreeNodesortedArrayToBST(int[]nums){returnsortedArrayToBST(nums,0,nums.length);}publicTreeNodesortedArrayToBST(int[]nums,intleft,intright){if(left>=right){retur......
  • 代码随想录算法训练营第四十三天|LeetCode300.最长递增子序列、LeetCode674.最长连续
    前言打卡代码随想录算法训练营第49期第四十三天 (๑ˉ∀ˉ๑)首先十分推荐学算法的同学可以先了解一下代码随想录,可以在B站卡哥B站账号、代码随想录官方网站代码随想录了解,卡哥清晰易懂的算法教学让我直接果断关注,也十分有缘和第49期的训练营大家庭一起进步。LeetCode300......
  • 代码随想录:用栈实现队列
    代码随想录:用栈实现队列主要是记一下栈和队列的定义和基本使用方法,值得注意的是pop和push都是操作,没有返回值,需要先用top和front获得顶端的值。这个地方有个记忆技巧,栈只看“顶部顶端”,队列看“前后端”,即top和front-**创建栈**```cppstd::stack<int>s;检查是否为......
  • 代码随想录:用队列实现栈
    代码随想录:用队列实现栈classMyStack{public://pop就是拿队列的最后一个元素,只需要用另一个队列对现有队列遍历,拿到最后一个元素即可queue<int>target;MyStack(){}voidpush(intx){target.push(x);}intp......
  • 代码随想录day14 | leetcode 226.翻转二叉树 101. 对称二叉树 104.二叉树的最大深度 1
    226.翻转二叉树前序和后序写法都可以我用的是前序错误写法classSolution{publicTreeNodeinvertTree(TreeNoderoot){if(root==null)returnnull;swap(root.left,root.right);invertTree(root.left);invertTree(root.r......
  • 124. 二叉树中的最大路径和
    问题描述二叉树中的路径被定义为一条节点序列,序列中每对相邻节点之间都存在一条边。同一个节点在一条路径序列中至多出现一次。该路径至少包含一个节点,且不一定经过根节点。路径和是路径中各节点值的总和。给你一个二叉树的根节点root,返回其最大路径和。分析树形D......