我是靠谱客的博主 闪闪流沙,最近开发中收集的这篇文章主要介绍【LeetCode刷题记录7】39.组合数目(回溯算法)回溯模板,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

39.组合数目
注意:

  • *题中有可以重复使用数组元素的条件*(没好好看条件,程序过了,自己一直想不明白为啥过了,后来发现误打误撞满足了题中的条件)
  • 每次更新路径都要在复制的原路径上加元素,不能直接用旧路径,子分支多于一个,假如第一个分支在原路径上更新,后面的分支也要更新,可原路径已经没了
  • 每次都要产生一堆List记录路径,可以加入及时删除List的语句,降低空间复杂度

class Solution {
    List<List<Integer>> res = new ArrayList<>();
    int[] candidates;
    int len;
    
    public void backtrack(List<Integer> pre, int index, int tar){
        if(tar == 0){
			res.add(pre);
			return;
		}
		if(tar < 0){return;}
		
		for(int i = index; i < len; i++){
			List<Integer> cur = new ArrayList(pre);
            cur.add(candidates[i]);
			backtrack(cur,i,tar-candidates[i]);
		}
		//return;
    }
    public List<List<Integer>> combinationSum(int[] candidates, int target) {
		this.candidates = candidates;
		this.len = candidates.length;
        
		Arrays.sort(this.candidates);
		
		backtrack(new ArrayList<Integer>(), 0, target);
        
        return this.res;
    }
}

回溯模板

result = []
def backtrack(路径, 选择列表):
    if 满足结束条件:
        result.add(路径)(可以添加复制的路径到结果,方便内存管理)
        return

    for 选择 in 选择列表:
        做选择(更新路径)
        backtrack(路径, 选择列表)
        撤销选择(及时删除路径)

最后

以上就是闪闪流沙为你收集整理的【LeetCode刷题记录7】39.组合数目(回溯算法)回溯模板的全部内容,希望文章能够帮你解决【LeetCode刷题记录7】39.组合数目(回溯算法)回溯模板所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部