博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
组合总和3 leetcode 216
阅读量:5103 次
发布时间:2019-06-13

本文共 628 字,大约阅读时间需要 2 分钟。

组合总和3

解题思路:递归回溯

class Solution {    public List
> result = new ArrayList
>(); public List
> combinationSum3(int k, int n) { List
list = new ArrayList<>(); combinationSum3(1,k,n,list); return result; } public void combinationSum3(int start, int k, int n, List
list) { if(k==0) { if(n==0) { List
newList = (List)((ArrayList)list).clone(); result.add(newList); } return; } for(int i=start;i<10;++i) { list.add(i); combinationSum3(i+1,k-1,n-i,list); list.remove((Integer)i); } }}

 

转载于:https://www.cnblogs.com/erdanyang/p/11505001.html

你可能感兴趣的文章
mysql 自动加上编号
查看>>
Message no. C6015--No valuation variant found for valuation area xxxx
查看>>
Program Variant Scheduling job
查看>>
.net之路
查看>>
题目2-括号配对问题
查看>>
python 面向对象oop
查看>>
linux 安装 Django
查看>>
Heap:Sunscreen(POJ 3614)
查看>>
Storm-源码分析-Streaming Grouping (backtype.storm.daemon.executor)
查看>>
Hadoop TDG 2 – I/O
查看>>
C#中 As 和强制转换的总结
查看>>
POJ2227(优先队列)
查看>>
PCB 铺铜
查看>>
Calendar(显示日期)
查看>>
一周最新示例代码回顾 (4/23–4/29)
查看>>
转载:字符串的驻留(String Interning)
查看>>
C语言指针总结
查看>>
monoGSM信号强度示例
查看>>
软件工程--功能规格说明书
查看>>
POJ 1065 学习写法
查看>>