216. Combination Sum III

栏目: Java · 发布时间: 6年前

内容简介:Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be used and each combination should be a unique set of numbers.Note:All numbers will be positive integers.

Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be used and each combination should be a unique set of numbers.

Note:

All numbers will be positive integers.

The solution set must not contain duplicate combinations.

Example 1:

Input: k = 3, n = 7
Output: [[1,2,4]]

Example 2:

Input: k = 3, n = 9
Output: [[1,2,6], [1,3,5], [2,3,4]]

难度:medium

题目:找出所有可能的K个数之和为n的组合,只可以使用1到9之间的数。

注意:所有数都为正,给出的答案中不包含重复的数。

思路:递归

Runtime: 1 ms, faster than 66.65% of Java online submissions for Combination Sum III.

Memory Usage: 35 MB, less than 54.02% of Java online submissions for Combination Sum III.

class Solution {
    public List<List<Integer>> combinationSum3(int k, int n) {
        List<List<Integer>> result = new ArrayList<>();
        if (n > 45 || n < 1 || k < 1 || k > 9) {
            return result;
        }
        
        combination(1, k, 0, n, new Stack<>(), result);
        
        return result;
    }
    
    private void combination(int begin, int k, int sum, int n,
                             Stack<Integer> stack, List<List<Integer>> result) {
        if (k < 0 || sum > n) {
            return;
        }
        if (0 == k && sum == n) {
            result.add(new ArrayList<>(stack));
            return;
        }
        
        for (int i = begin; i <= 9 - k + 1; i++) {
            stack.push(i);
            combination(i + 1, k - 1, sum + i, n, stack, result);
            stack.pop();
        }
    }
}

以上就是本文的全部内容,希望本文的内容对大家的学习或者工作能带来一定的帮助,也希望大家多多支持 码农网

查看所有标签

猜你喜欢:

本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们

火的礼物:人类与计算技术的终极博弈(第4版)

火的礼物:人类与计算技术的终极博弈(第4版)

【美】Baase,Sara(莎拉芭氏) / 郭耀、李琦 / 电子工业出版社 / 89.00

《火的礼物:人类与计算技术的终极博弈 (第4版)》是一本讲解与计算技术相关的社会、法律和伦理问题的综合性读物。《火的礼物:人类与计算技术的终极博弈 (第4版)》以希腊神话中普罗米修斯送给人类的火的礼物作为类比,针对当前IT技术与互联网迅速发展带来的一些社会问题,从法律和道德的角度详细分析了计算机技术对隐私权、言论自由、知识产权与著作权、网络犯罪等方面带来的新的挑战和应对措施,讲解了计算技术对人类的......一起来看看 《火的礼物:人类与计算技术的终极博弈(第4版)》 这本书的介绍吧!

SHA 加密
SHA 加密

SHA 加密工具

RGB HSV 转换
RGB HSV 转换

RGB HSV 互转工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具