• 代码随想录二刷回溯算法-组合问题总结


    回溯算法实际上也是一种暴力算法,利用树型结构的回溯与剪枝从而解决问题 

    解题步骤主要分三步:1.确立回溯函数的参数 2.确立终止条件 3.确立单层遍历逻辑


    组合问题 

    77. 组合

    这道题目就是经典的组合问题

    如果我们使用for循环来进行暴力求解,那么当n和k越来越多,我们嵌套的for循环也就会越来越多

    所以我们使用回溯算法来解决,我们先画出一个树状图

    那么解决回溯算法的核心就在于使用for循环来进行横向遍历使用递归回溯来完成纵向遍历

    画图举例

    使用递归完成纵向遍历

    使用for循环完成横向遍历

    1.确立回溯函数的参数:

    要传入数组,为了让函数知道下一次遍历应该从哪开始,所以也需要传入起始坐标

    public void backtracking(int[] nums,int startIndex)

    2.确立终止条件:当我们的path的长度到达2时就将path添加到result里面去

    3.确立单层遍历逻辑: 设置for循环使得数组横向遍历

    1. for(int i = startIndex;i < nums.length;i++){
    2. path.add(nums[i]);
    3. backtracing(nums,i+1);
    4. path.removeLast();
    5. }

     最终代码如下

    1. class Solution {
    2. List> result= new ArrayList<>();
    3. LinkedList path = new LinkedList<>();
    4. public List> combine(int n, int k) {
    5. backtracking(n,k,1);
    6. return result;
    7. }
    8. public void backtracking(int n,int k,int startIndex){
    9. if (path.size() == k){
    10. result.add(new ArrayList<>(path));
    11. return;
    12. }
    13. for (int i =startIndex;i<=n;i++){
    14. path.add(i);
    15. backtracking(n,k,i+1);
    16. path.removeLast();
    17. }
    18. }
    19. }

    216. 组合总和 III

    这题的解题思路实际上和上一题是一样的,虽然题目中写道:每个数字 最多使用一次,但实际上我们使用横向遍历的时候每一次遍历的数字都是不同的,所以我们本题在上一题的基础上只需要改变 2.确立终止条件 即可

     2.确立终止条件:

    1. if (path.size() == k) {
    2. if (sum == targetSum) result.add(new ArrayList<>(path));
    3. return;
    4. }

    其余思路不变,具体代码如下:

    1. class Solution {
    2. List> result = new ArrayList();
    3. LinkedList path = new LinkedList();
    4. public List> combinationSum3(int k, int n) {
    5. combinationSum3Helper(k,n,1);
    6. return result;
    7. }
    8. public void combinationSum3Helper(int k,int n,int startIndex){
    9. if(path.size() == k){
    10. int sum = 0;
    11. for(int i : path){
    12. sum += i;
    13. }
    14. if(sum == n){
    15. result.add(new ArrayList(path));
    16. }
    17. return;
    18. }
    19. for(int i = startIndex;i <= 9;i++){
    20. path.add(i);
    21. combinationSum3Helper(k,n,i+1);
    22. path.removeLast();
    23. }
    24. }
    25. }

    17. 电话号码的字母组合

    首先画出本题的树状图

    1.确立回溯函数的参数:

    首先要知道每个按键所对应的字母组合所以要传入一个String数组;

    当我们选择了 2 这个按键,我们还需要知道下一个按键的位置,所以要传入按键位置以及题目所给定的数字组合;

    当然我们还需要下标来确认遍历的位置在哪所以也需要startIndex,但是本题的startIndex实际上就是按键位置,所以代码如下:

    public void letterCombinationsHelper(String digits,String[] numsString,int num)

    2.确立终止条件

    当我们的按键数字与我们的数字组合长度相同时那么说明此时就到叶子节点需要进行返回了

    所以代码如下:

    1. if(num == digits.length()){
    2. result.add(stringBuffer.toString());
    3. return;
    4. }

    3.确立单层遍历逻辑

    我们首先要有一个String来接收我们的字母组合,然后再利用for循环的横向遍历来手机不同的字母组合

    所以代码如下:

    1. String str = numsString[digits.charAt(num) - '0'];
    2. for(int i = 0;i < str.length();i++){
    3. stringBuffer.append(str.charAt(i));
    4. letterCombinationsHelper(digits,numsString,num + 1);
    5. stringBuffer.deleteCharAt(stringBuffer.length() - 1);
    6. }

    最后完整代码如下:

    1. class Solution {
    2. List result = new ArrayList();
    3. public List letterCombinations(String digits) {
    4. if(digits == null || digits.length() == 0){
    5. return result;
    6. }
    7. String[] numsString = {" "," ","abc","def","ghi","jkl","mno","pqrs","tuv","wxzy"};
    8. letterCombinationsHelper(digits,numsString,0);
    9. return result;
    10. }
    11. StringBuffer stringBuffer = new StringBuffer();
    12. public void letterCombinationsHelper(String digits,String[] numsString,int num){
    13. if(num == digits.length()){
    14. result.add(stringBuffer.toString());
    15. return;
    16. }
    17. String str = numsString[digits.charAt(num) - '0'];
    18. for(int i = 0;i < str.length();i++){
    19. stringBuffer.append(str.charAt(i));
    20. letterCombinationsHelper(digits,numsString,num + 1);
    21. stringBuffer.deleteCharAt(stringBuffer.length() - 1);
    22. }
    23. }
    24. }

    组合总和问题 

    39. 组合总和

    这题的解题思路实际上还是用到回溯算法,但是我们在纵向遍历的时候需要时注意的是传递到下一层递归的起始位置与传递的起始位置相同,原因在于题目中要求的是不同的组合,也就是说加入我们从3开始进行纵向遍历,那么下一层递归的起始位置也是3

    首先画出树状图: 

    1.确立回溯函数的参数:首先要传递数组以及题目要求的目标值,然后传递起始位置,然后还需要知道每一层的总和是多少(这里传不传其实都可以)

    public void combinationSumHelper(int[] candidates,int sum,int target,int index)

    2.确立终止条件:当总和达到目标值时就添加到ans中并且返回

    1. if(sum == target){
    2. result.add(new ArrayList(path));
    3. return;
    4. }

    3.确立单层遍历逻辑:

    我们在确定单层遍历逻辑的时候需要进行剪枝操作陷入死循环,也就是说,当总和以及超过目标值时就应该直接返回

    1. for(int i = index;i < candidates.length;i++){
    2. if(sum + candidates[i] > target){
    3. break;
    4. }
    5. sum += candidates[i];
    6. path.add(candidates[i]);
    7. combinationSumHelper(candidates,sum,target,i);
    8. path.removeLast();
    9. sum -= candidates[i];
    10. }

    最后完整代码如下

    1. class Solution {
    2. List> result = new ArrayList();
    3. LinkedList path = new LinkedList();
    4. int sum = 0;
    5. public List> combinationSum(int[] candidates, int target) {
    6. if(candidates.length == 0){
    7. return result;
    8. }
    9. Arrays.sort(candidates);
    10. combinationSumHelper(candidates,target,0);
    11. return result;
    12. }
    13. public void combinationSumHelper(int[] candidates,int target,int index){
    14. if(sum == target){
    15. result.add(new ArrayList(path));
    16. return;
    17. }
    18. for(int i = index;i < candidates.length;i++){
    19. if(sum + candidates[i] > target){
    20. break;
    21. }
    22. sum += candidates[i];
    23. path.add(candidates[i]);
    24. combinationSumHelper(candidates,target,i);
    25. path.removeLast();
    26. sum -= candidates[i];
    27. }
    28. }
    29. }

    40. 组合总和 II

    这题实际上和上面那题大体思路上是一样的,但是这题的要求是每个组合中不能出现重复的数字

    这里的重复的数字实际上指的是数组中重复的下标所对应的数字

    这也解释了为什么能出现 [1,1,6] 这种组合

    那么为了解决不出现重复的下标所对应的数字,我们使用startIndex来标记每次开始的下标位置哪,从而避免重复出现重复的下标所对应的数字

    同时还要求解集不能包含重复的组合,那么我们可以将数组进行排序,当遇到相同的数字时就跳过知道遇到不同的数字,这样就可以不包含重复的组合,因为当两个数字相同的时候,那么他们两个对应的组合一定会有重复的。

    1.确立回溯函数的参数:

    这题我们只需要知道每层递归的起始位置在哪即可

    public void combinationSum2Helper(int[] candidates,int target,int index)

    2.确立终止条件

    当我们的总和达到了目标值,那么就将结果添加到ans中并且返回

    1. if(sum == target){
    2. result.add(new ArrayList(path));
    3. }

    3.确立单层遍历逻辑

     同样的,为了避免死循环,当总和超过目标值就直接跳出循环直接返回了

    1. if(sum + candidates[i] > target){
    2. break;
    3. }

    由于已经排序好了

    比如在 112这个组合中

    第一个1就会包含第二个1的组合

    那么遇到第二个1直接跳过就好了

    这就避免了重复取元素

    1. if ( i > start && candidates[i] == candidates[i - 1] ) {
    2. continue;
    3. }

     这里为什么 i 是 i > start 而不是 i > 0 呢?如果是 i > 0的话那么就一定会省略掉 [1,1,6] 这种组合

    当我们设置成  i > start 以后既能够保证在同一层里面不出现重复的组合又能保证不会省略掉像[1,1,6] 这种组合

    1. for ( int i = start; i < candidates.length; i++ ) {
    2. if(sum + candidates[i] <= target){
    3. break;
    4. }
    5. if (i > start && candidates[i] == candidates[i - 1] ) {
    6. continue;
    7. }
    8. sum += candidates[i];
    9. path.add( candidates[i] );
    10. // i+1 代表当前组内元素只选取一次
    11. backTracking( candidates, target, i + 1 );
    12. sum -= candidates[i];
    13. path.removeLast();
    14. }

    全部代码如下:

    1. class Solution {
    2. List> result = new ArrayList();
    3. LinkedList path = new LinkedList();
    4. int sum = 0;
    5. public List> combinationSum2(int[] candidates, int target) {
    6. use = new boolean[candidates.length];
    7. Arrays.fill(use,false);
    8. Arrays.sort(candidates);
    9. combinationSum2Helper(candidates,target,0);
    10. return result;
    11. }
    12. public void combinationSum2Helper(int[] candidates,int target,int index){
    13. if(sum == target){
    14. result.add(new ArrayList(path));
    15. }
    16. for(int i = index;i < candidates.length;i++){
    17. if(sum + candidates[i] > target){
    18. break;
    19. }
    20. if(i > 0 && candidates[i] == candidates[i-1] && !use[i-1]){
    21. continue;
    22. }
    23. sum += candidates[i];
    24. path.add(candidates[i]);
    25. combinationSum2Helper(candidates,target,i+1);
    26. sum -= candidates[i];
    27. path.removeLast();
    28. }
    29. }
    30. }

    组合分割问题

    组合分割问题的核心在于分割,我们通常使用 startIndex 下标来作为分割线,从而达到分割的效果,通常这类题目的解法分为三步,

    1.使用for循环完成横向遍历 使用回溯完成纵向遍历(基本的回溯操作)

    2.在每一层内使用函数判断分割后的字符串是否合法

    3.达到终止条件以后添加到结果内

    131. 分割回文串

    这道题的核心问题在于如何分割,我们使用startIndex来完成分割,通过告诉下一层的起始位置在哪从而完成分割字符串

    首先我们画出树状图

     

    可以看到我们通过不停的使用startIndex就可以完成对字符串的分割,将字符串分割成不同的子串,再将子串放进判断是否合法的函数内进行判断,如果合法就放进收集结果的链表内,如果 不合法那么就将移动分割线到 下一位

    1. for(int i = startIndex;i < s.length();i++){
    2. if(isPartition(s,startIndex,i)){
    3. String str = s.substring(startIndex,i+1);
    4. dq.addLast(str);
    5. }else{
    6. continue;
    7. }
    8. partitionHelper(s,i+1);
    9. dq.removeLast();
    10. }

    对于是否合法的函数需要根据题意来编写代码

    1. public boolean isPartition(String s,int startIndex,int endIndex){
    2. int left = startIndex;
    3. int right = endIndex;
    4. while(left <= right){
    5. if(s.charAt(left) != s.charAt(right)){
    6. return false;
    7. }
    8. left++;
    9. right--;
    10. }
    11. return true;
    12. }

    当我们的分割线超过了字符串的长度时,此时就已经分割完毕了所以我们要将收集到的结果放进结果集内

    1. if(startIndex >= s.length()){
    2. ans.add(new ArrayList(dq));
    3. return;
    4. }

    最后贴上完整代码

    1. class Solution {
    2. List> ans = new ArrayList();
    3. Deque dq = new LinkedList();
    4. public List> partition(String s) {
    5. partitionHelper(s,0);
    6. return ans;
    7. }
    8. public void partitionHelper(String s,int startIndex){
    9. if(startIndex >= s.length()){
    10. ans.add(new ArrayList(dq));
    11. return;
    12. }
    13. for(int i = startIndex;i < s.length();i++){
    14. if(isPartition(s,startIndex,i)){
    15. String str = s.substring(startIndex,i+1);
    16. dq.addLast(str);
    17. }else{
    18. continue;
    19. }
    20. partitionHelper(s,i+1);
    21. dq.removeLast();
    22. }
    23. }
    24. public boolean isPartition(String s,int startIndex,int endIndex){
    25. int left = startIndex;
    26. int right = endIndex;
    27. while(left <= right){
    28. if(s.charAt(left) != s.charAt(right)){
    29. return false;
    30. }
    31. left++;
    32. right--;
    33. }
    34. return true;
    35. }
    36. }

    93. 复原 IP 地址

    这道题目实际上还是分割问题,我们根据刚才的思路将树状图画出来(关键的分支)

    本题的关键在于合法IP地址的判断函数,题目要求 每个整数位于 0 到 255 之间组成,且不能含有前导 0,当前导为0时要求该整数只能为0

    所以我们合法IP地址判断应该这么写

    1. public boolean isVaild(StringBuffer stringBuffer,int start,int end){
    2. String s = stringBuffer.toString();
    3. if(start > end){
    4. return false;
    5. }
    6. char[] str = s.toCharArray();
    7. if(start != end && str[start] == '0'){
    8. return false;
    9. }
    10. int num = 0;
    11. for(int i = start;i <= end;i++){
    12. if(str[i] > '9' || str[i] < '0'){
    13. return false;
    14. }
    15. int number = str[i] - '0';
    16. num = num * 10 + number;
    17. if(num > 255){
    18. return false;
    19. }
    20. }
    21. return true;
    22. }

    我们的回溯函数里面for循环的代码编写同之前的解法是一样的,首先判断该子串是否合法,如果合法就进入到下一层递归进行分割,如果不合法那么就直接跳出递归,回溯到上一层

    1. for(int i = startIndex;i < str.length();i++){
    2. if(isVaild(str,startIndex,i)){
    3. str.insert(i+1,".");
    4. restoreIpAddressesHelper(str,i+2,pointNums+1);
    5. str.deleteCharAt(i+1);
    6. }else{
    7. break;
    8. }
    9. }

    我们的终止条件是当字符串中出现了三个分割点时就添加到结果集中,这里要注意的是由于我们判断子串是否合法的时候判断的是分割点前面的子串而不是分割点后面的子串所以很有可能会出现下面这种情况

    所以为了防止这种情况的发生,我们需要在终止条件的地方再次进行判断

    1. if(pointNums == 3){
    2. if(isVaild(str,startIndex,str.length()-1)){
    3. ans.add(str.toString());
    4. }
    5. return;
    6. }

     总体代码如下

    1. class Solution {
    2. List ans = new ArrayList();
    3. public List restoreIpAddresses(String s) {
    4. StringBuffer str = new StringBuffer(s);
    5. restoreIpAddressesHelper(str,0,0);
    6. return ans;
    7. }
    8. public void restoreIpAddressesHelper(StringBuffer str,int startIndex,int pointNums){
    9. //如果有三个点那么就直接返回了
    10. if(pointNums == 3){
    11. if(isVaild(str,startIndex,str.length()-1)){
    12. ans.add(str.toString());
    13. }
    14. return;
    15. }
    16. for(int i = startIndex;i < str.length();i++){
    17. if(isVaild(str,startIndex,i)){
    18. str.insert(i+1,".");
    19. restoreIpAddressesHelper(str,i+2,pointNums+1);
    20. str.deleteCharAt(i+1);
    21. }else{
    22. break;
    23. }
    24. }
    25. }
    26. public boolean isVaild(StringBuffer stringBuffer,int start,int end){
    27. String s = stringBuffer.toString();
    28. if(start > end){
    29. return false;
    30. }
    31. char[] str = s.toCharArray();
    32. if(start = end && str[start] == '0'){
    33. return false;
    34. }
    35. int num = 0;
    36. for(int i = start;i <= end;i++){
    37. if(str[i] > '9' || str[i] < '0'){
    38. return false;
    39. }
    40. int number = str[i] - '0';
    41. num = num * 10 + number;
    42. if(num > 255){
    43. return false;
    44. }
    45. }
    46. return true;
    47. }
    48. }
  • 相关阅读:
    深度学习实战02-卷积神经网络(CNN)实现服装图像分类
    【 java 面向对象】static关键字的使用
    Shiro-550 漏洞分析
    django的使用步骤详细
    2022 年 JavaScript 开发工具的生态,别再用过时的框架了
    ctfshow—web—一切看起来都那么合情合理
    【单链表】实现链表逆置
    NLP领域可以投稿的期刊(2022整理)
    避免按钮重复点击的小工具bimianchongfu.queren()
    C++内存管理 (new、delete)知识点+完整思维导图+实操图+深入细节通俗易懂建议收藏
  • 原文地址:https://blog.csdn.net/Superkom666/article/details/132197384