LeetCode No.77 | StriveZs的博客

LeetCode No.77

LeetCode第七十七题—组合

自己代码的开源仓库:click here 欢迎Star和Fork :)

题目描述

给定两个整数 n 和 k,返回 1 … n 中所有可能的 k 个数的组合。

1
2
3
4
5
6
7
8
9
10
11
12
示例:

输入: n = 4, k = 2
输出:
[
[2,4],
[3,4],
[2,3],
[1,2],
[1,3],
[1,4],
]

代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import copy
class Solution(object):
def combine(self, n, k):
"""
:type n: int
:type k: int
:rtype: List[List[int]]

核心思想:
经典回溯法
def backtrack(path, selected):
if 满足停止条件:
res.append(path)
for 选择 in 选择列表:
做出选择
递归执行backtrack
满足则return True
如果不满足要求就撤销选择
"""

res = [] # 结果存储
numList = [i for i in range(1,n+1)]
temp = []
def backtrack(temp,i,length):
# 停止条件
if len(temp) == length:
if temp not in numList:
tt = copy.copy(temp)
res.append(tt)
return

for j in range(i+1,n):
# 做出选择
temp.append(numList[j])
# 递归执行
backtrack(temp,j,k)
# 撤销选择
temp.pop()
backtrack(temp,-1,k)
return res

if __name__ == '__main__':
s = Solution()
print(s.combine(4,2))
StriveZs wechat
Hobby lead  creation, technology change world.