当前位置:   article > 正文

java LintCode 90.k数和(二)_算法 k个数之和 java

算法 k个数之和 java

1.题目
在这里插入图片描述
2.解法
一维数组+dfs

public class Solution {
    public List<List<Integer>> kSumII(int[] A, int k, int target) {
        List<List<Integer>> res = new ArrayList<>();
        List<Integer> temp = new ArrayList<>();
        int n = A.length;
        dfs(0, k, n, A, target, res, temp);
        return res;
    }
    private void dfs(int start, int k, int n, int[] A, int target, List<List<Integer>> res, List<Integer> temp){
        if(k == 0 && target == 0){
            res.add(new ArrayList<>(temp));
            return;
        }
        for(int i = start; i < n; i++){
            temp.add(A[i]);
            dfs(i + 1, k - 1, n, A, target - A[i], res, temp);
            temp.remove(temp.size() - 1);
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/618262
推荐阅读
相关标签
  

闽ICP备14008679号