首页 > 编程语言 >代码学习第24天----回溯算法

代码学习第24天----回溯算法

时间:2024-03-20 22:58:55浏览次数:27  
标签:24 used nums int new ---- result 回溯 path

随想录日记part24

t i m e : time: time: 2024.03.10



主要内容:回溯算法在代码学习中尤其重要,所以今天继续加深对其的理解:1:递增子序列 ;2.全排列 ;3.全排列II



Topic1递增子序列

题目:

给你一个整数数组 n u m s nums nums ,找出并返回所有该数组中不同的递增子序列,递增子序列中 至少有两个元素 。你可以按 任意顺序 返回答案。数组中可能含有重复元素,如出现两个整数相等,也可以视作递增序列的一种特殊情况。

输入: n u m s = [ 4 , 6 , 7 , 7 ] nums = [4,6,7,7] nums=[4,6,7,7]
输出: [ [ 4 , 6 ] , [ 4 , 6 , 7 ] , [ 4 , 6 , 7 , 7 ] , [ 4 , 7 ] , [ 4 , 7 , 7 ] , [ 6 , 7 ] , [ 6 , 7 , 7 ] , [ 7 , 7 ] ] [[4,6],[4,6,7],[4,6,7,7],[4,7],[4,7,7],[6,7],[6,7,7],[7,7]] [[4,6],[4,6,7],[4,6,7,7],[4,7],[4,7,7],[6,7],[6,7,7],[7,7]]

思路:

本题求自增子序列,是不能对原数组进行排序的,排完序的数组都是自增子序列了。所以不能使用之前的去重逻辑!
用 [ 4 , 7 , 6 , 7 ] [4, 7, 6, 7] [4,7,6,7] 这个数组来举例,抽象为树形结构如图:
按照回溯模板我们进行回溯三部曲:
在这里插入图片描述
递归三部曲:
1.回溯函数模板返回值以及参数
在这里要定义一个全局变量 r e s u l t result result用来存放符合条件结果的集合。回溯函数里需要一个参数为 i n t int int 型变量 s t a r t I n d e x startIndex startIndex,来表示索引,
所以整体代码如下:

List<List<Integer>> result = new ArrayList<>();// 记录最后输出的结果
List<Integer> path = new LinkedList<>();// 记录中间合理子序列
void reback(int[] nums, int startIndex)

2.回溯函数终止条件
题目要求递增子序列大小至少为2,所以代码如下
代码如下:

if (path.size() >= 2) {
	result.add(new ArrayList(path));
        }
if (startIndex >= nums.length) {
    return;
        }

3.回溯搜索的遍历过程
然后就是递归和回溯的过程:
在这里插入图片描述
在图中可以看出,同一父节点下的同层上使用过的元素就不能再使用了。

实现代码使用 H a s h S e t HashSet HashSet实现如下:

    HashSet<Integer> hs = new HashSet<>();
 	for (int i = startIndex; i < nums.length; i++) {
            // 去重
 		if ((path.size() > 0 && path.getLast() > nums[i]) || hs.contains(nums[i]))
                continue;
 			hs.add(nums[i]);
            path.add(nums[i]);
            reback(nums, i + 1);
            path.removeLast();
     }

完整的代码如下:

class Solution {
    List<List<Integer>> result = new ArrayList<>();// 记录最后输出的结果
    List<Integer> path = new LinkedList<>();// 记录中间合理子序列

    public List<List<Integer>> findSubsequences(int[] nums) {
        reback(nums, 0);
        return result;
    }

    private void reback(int[] nums, int startIndex) {// 回溯函数
        if (path.size() >= 2) {
            result.add(new ArrayList(path));
        }
        if (startIndex >= nums.length) {
            return;
        }
        HashSet<Integer> hs = new HashSet<>();
        for (int i = startIndex; i < nums.length; i++) {
            // 去重
            if ((path.size() > 0 && path.getLast() > nums[i]) || hs.contains(nums[i]))
                continue;
            hs.add(nums[i]);
            path.add(nums[i]);
            reback(nums, i + 1);
            path.removeLast();
        }

    }
}

时间复杂度: O ( n ∗ 2 n ) O(n * 2^n) O(n∗2n)
空间复杂度: O ( n ) O(n) O(n)



Topic2全排列

题目:

给定一个不含重复数字的数组 n u m s nums nums ,返回其 所有可能的全排列 。你可以 按任意顺序 返回答案。

输入: n u m s = [ 1 , 2 , 3 ] nums = [1,2,3] nums=[1,2,3]
输出: [ [ 1 , 2 , 3 ] , [ 1 , 3 , 2 ] , [ 2 , 1 , 3 ] , [ 2 , 3 , 1 ] , [ 3 , 1 , 2 ] , [ 3 , 2 , 1 ] ] [[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]] [[1,2,3],[1,3,2],[2,1,3],[2,3,1],[3,1,2],[3,2,1]]

思路:

按照回溯模板我们进行回溯三部曲:
递归三部曲:
1.回溯函数模板返回值以及参数
在这里要定义两个全局变量, p a t h path path用来存放符合条件单一结果, r e s u l t result result用来存放符合条件结果的集合。排列问题需要一个 u s e d used used 数组,标记已经选择的元素,如图橘黄色部分所示:
在这里插入图片描述

所以整体代码如下:

List<List<Integer>> result=new ArrayList<>();
LinkedList<Integer> path=new LinkedList<>();
boolean[] used;
private void permuteHelper(int[] nums)

2.回溯函数终止条件
当收集元素的数组 p a t h path path的大小达到和 n u m s nums nums数组一样大的时候,说明找到了一个全排列

if (nums.length == path.size()) {
	result.add(new ArrayList(path));
    return;
    }

3.回溯搜索的遍历过程
实现代码如下:

 for (int i = 0; i < nums.length; i++) {
            if (used[i] == false) {
                used[i] = true;
                path.add(nums[i]);
                permuteHelper(nums);
                path.removeLast();
                used[i] = false;
            }
        }

完整的代码如下:

class Solution {
    List<List<Integer>> result = new ArrayList<>();
    List<Integer> path = new LinkedList<>();
    boolean[] used;

    public List<List<Integer>> permute(int[] nums) {
        used = new boolean[nums.length];
        Arrays.fill(used, false);
        permuteHelper(nums);
        return result;
    }

    private void permuteHelper(int[] nums) {
        // 回溯的结束条件
        if (nums.length == path.size()) {
            result.add(new ArrayList(path));
            return;
        }
        for (int i = 0; i < nums.length; i++) {
            if (used[i] == false) {
                used[i] = true;
                path.add(nums[i]);
                permuteHelper(nums);
                path.removeLast();
                used[i] = false;
            }
        }

    }
}

时间复杂度: O ( n ! ) O(n!) O(n!)
空间复杂度: O ( n ) O(n) O(n)



Topic3全排列II

题目:

给定一个可包含重复数字的序列 n u m s nums nums ,按任意顺序返回所有不重复的全排列。

输入: n u m s = [ 1 , 1 , 2 ] nums = [1,1,2] nums=[1,1,2]
输出: [ [ 1 , 1 , 2 ] , [ 1 , 2 , 1 ] , [ 2 , 1 , 1 ] ] [[1,1,2], [1,2,1], [2,1,1]] [[1,1,2],[1,2,1],[2,1,1]]

思路:
这个就是上面的方法加上了去重操作直接给出代码:

class Solution {
    List<List<Integer>> result = new ArrayList<>();
    List<Integer> path = new LinkedList<>();
    boolean[] used;

    public List<List<Integer>> permuteUnique(int[] nums) {
        used = new boolean[nums.length];
        Arrays.fill(used, false);
        Arrays.sort(nums);
        reback(nums);
        return result;
    }
    private void reback(int[] nums) {
        if (path.size() == nums.length) {
            result.add(new ArrayList(path));
            return;
        }
        for (int i = 0; i < nums.length; i++) {
            if (used[i] == false) {
                if (i > 0 && nums[i] == nums[i - 1] && used[i - 1] == false)
                    continue;
                used[i] = true;
                path.add(nums[i]);
                reback(nums);
                path.removeLast();
                used[i] = false;
            }
        }
    }
}

时间复杂度: O ( n ! ∗ n ) O(n! * n) O(n!∗n)
空间复杂度: O ( n ) O(n) O(n)

拓展:
去重最为关键的代码为:

if (i > 0 && nums[i] == nums[i - 1] && used[i - 1] == false) {
    continue;
}

如果改成 u s e d [ i − 1 ] = = t r u e used[i - 1] == true used[i−1]==true, 也是正确的!,去重代码如下:

if (i > 0 && nums[i] == nums[i - 1] && used[i - 1] == true) {
    continue;
}

对于排列问题,树层上去重和树枝上去重,都是可以的,但是树层上去重效率更高!
用输入: [ 1 , 1 , 1 ] [1,1,1] [1,1,1] 来举一个例子。
树层上去重 ( u s e d [ i − 1 ] = = f a l s e ) (used[i - 1] == false) (used[i−1]==false),的树形结构如下:
在这里插入图片描述
树枝上去重 ( u s e d [ i − 1 ] = = t r u e ) (used[i - 1] == true) (used[i−1]==true)的树型结构如下:
在这里插入图片描述

标签:24,used,nums,int,new,----,result,回溯,path
From: https://blog.csdn.net/qq_45296815/article/details/136882406

相关文章

  • 多元统计分析课程笔记
    多元统计分析(数据分析)课程的笔记,主要内容为理论,公式推导以及例题。                                 ......
  • 基于springboot实现校园管理系统的设计与实现演示【附项目源码+论文说明】
    基于springboot实现校园管理系统的设计与实现演示摘要随着科学技术的飞速发展,社会的方方面面、各行各业都在努力与现代的先进技术接轨,通过科技手段来提高自身的优势,校园管理系统当然也不能排除在外。校园管理系统是以实际运用为开发背景,运用软件工程原理和开发方法,采用sp......
  • 基于SpringBoot实现旅游网站管理系统项目演示【附项目源码+论文说明】
    基于SpringBoot实现旅游网站管理系统项目演示摘要随着科学技术的飞速发展,各行各业都在努力与现代先进技术接轨,通过科技手段提高自身的优势,旅游网站当然也不能排除在外,随着旅游网站的不断成熟,它彻底改变了过去传统的旅游网站方式,不仅使旅游管理难度变低了,还提升了旅游网站......
  • 机器学习最全详细入门指南
    Fieldofstudythatgivescomputerstheabilitytolearnwithoutbeingexplicitlyprogrammed.机器学习研究和构建的是一种特殊算法(而非某一个特定的算法),能够让计算机自己在数据中学习从而进行预测。所以,机器学习不是某种具体的算法,而是很多算法的统称。机器学习包......
  • PyTorch 深度学习(GPT 重译)(二)
    四、使用张量表示真实世界数据本章内容包括将现实世界的数据表示为PyTorch张量处理各种数据类型从文件加载数据将数据转换为张量塑造张量,使其可以作为神经网络模型的输入在上一章中,我们了解到张量是PyTorch中数据的构建块。神经网络将张量作为输入,并产生张......
  • Hexo项目部署在Github上并配置域名
    Hexo项目部署到Github上后如何配置自己的域名?以及域名怎么配置DNS解析到Github上?配置过程中有哪些需要细节需要多注意?话不多说直接上干货!目录一、Hexo项目部署到Github二、解析域名到GitHubPages1:首先购买或注册一个域名2:解析域名到Github三、配置Hexo项目四、配置GithubPages......
  • PyTorch 深度学习(GPT 重译)(三)
    六、使用神经网络拟合数据本章内容包括与线性模型相比,非线性激活函数是关键区别使用PyTorch的nn模块使用神经网络解决线性拟合问题到目前为止,我们已经仔细研究了线性模型如何学习以及如何在PyTorch中实现这一点。我们专注于一个非常简单的回归问题,使用了一个只有......
  • PyTorch 深度学习(GPT 重译)(四)
    第二部分:从现实世界的图像中学习:肺癌的早期检测第2部分的结构与第1部分不同;它几乎是一本书中的一本书。我们将以几章的篇幅深入探讨一个单一用例,从第1部分学到的基本构建模块开始,构建一个比我们迄今为止看到的更完整的项目。我们的第一次尝试将是不完整和不准确的,我们将探......
  • PyTorch 深度学习(GPT 重译)(五)
    十二、通过指标和增强改进训练本章涵盖定义和计算精确率、召回率以及真/假阳性/阴性使用F1分数与其他质量指标平衡和增强数据以减少过拟合使用TensorBoard绘制质量指标图上一章的结束让我们陷入了困境。虽然我们能够将深度学习项目的机制放置好,但实际上没有任......
  • 2024/03/18
    ABC344A-Spoiler题意:给出一个字符串,串中有两个$|$,输出$|$两边的内容。思路:我写的代码非常丑陋,模拟写的。赛后看到string的stl,感觉非常妙。rfind(str)是从字符串右侧开始匹配str#include<bits/stdc++.h>usingnamespacestd;intmain(){strings;cin>>s;in......