Skip to content

Commit 050137f

Browse files
committed
feat: update leetcode solutions: No.0078 & No.0090
- 0078.Subsets - 0090.Subsets II
1 parent ae1acd5 commit 050137f

File tree

10 files changed

+208
-31
lines changed

10 files changed

+208
-31
lines changed

README.md

+5
Original file line numberDiff line numberDiff line change
@@ -158,6 +158,11 @@
158158
- [最长上升子序列](/solution/0300-0399/0300.Longest%20Increasing%20Subsequence/README.md)
159159
- [俄罗斯套娃信封问题](/solution/0300-0399/0354.Russian%20Doll%20Envelopes/README.md)
160160

161+
### 回溯算法
162+
163+
- [子集](/solution/0000-0099/0078.Subsets/README.md)
164+
- [子集 II](/solution/0000-0099/0090.Subsets%20II/README.md)
165+
161166
### 混合问题
162167

163168
### 数据库

README_EN.md

+5
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,11 @@ Complete solutions to [LeetCode](https://leetcode-cn.com/problemset/all/), [LCOF
152152
- [Longest Increasing Subsequence](/solution/0300-0399/0300.Longest%20Increasing%20Subsequence/README_EN.md)
153153
- [Russian Doll Envelopes](/solution/0300-0399/0354.Russian%20Doll%20Envelopes/README_EN.md)
154154

155+
### Backtracking
156+
157+
- [Subsets](/solution/0000-0099/0078.Subsets/README_EN.md)
158+
- [Subsets II](/solution/0000-0099/0090.Subsets%20II/README_EN.md)
159+
155160
### Misc
156161

157162
- [Combine Two Tables](/solution/0100-0199/0175.Combine%20Two%20Tables/README_EN.md)

solution/0000-0099/0078.Subsets/README.md

+47-2
Original file line numberDiff line numberDiff line change
@@ -28,22 +28,67 @@
2828

2929
<!-- 这里可写通用的实现逻辑 -->
3030

31+
回溯法的基本模板:
32+
33+
```py
34+
res = []
35+
path = []
36+
37+
def backtrack(未探索区域, res, path):
38+
if path 满足条件:
39+
res.add(path) # 深度拷贝
40+
# return # 如果不用继续搜索需要 return
41+
for 选择 in 未探索区域当前可能的选择:
42+
if 当前选择符合要求:
43+
path.add(当前选择)
44+
backtrack(新的未探索区域, res, path)
45+
path.pop()
46+
```
47+
3148
<!-- tabs:start -->
3249

3350
### **Python3**
3451

3552
<!-- 这里可写当前语言的特殊实现逻辑 -->
3653

3754
```python
38-
55+
class Solution:
56+
def subsets(self, nums: List[int]) -> List[List[int]]:
57+
def dfs(nums, i, res, path):
58+
res.append(copy.deepcopy(path))
59+
while i < len(nums):
60+
path.append(nums[i])
61+
dfs(nums, i + 1, res, path)
62+
path.pop()
63+
i += 1
64+
res, path = [], []
65+
dfs(nums, 0, res, path)
66+
return res
3967
```
4068

4169
### **Java**
4270

4371
<!-- 这里可写当前语言的特殊实现逻辑 -->
4472

4573
```java
46-
74+
class Solution {
75+
public List<List<Integer>> subsets(int[] nums) {
76+
List<Integer> path = new ArrayList<>();
77+
List<List<Integer>> res = new ArrayList<>();
78+
dfs(nums, 0, res, path);
79+
return res;
80+
}
81+
82+
private void dfs(int[] nums, int i, List<List<Integer>> res, List<Integer> path) {
83+
res.add(new ArrayList<>(path));
84+
while (i < nums.length) {
85+
path.add(nums[i]);
86+
dfs(nums, i + 1, res, path);
87+
path.remove(path.size() - 1);
88+
++i;
89+
}
90+
}
91+
}
4792
```
4893

4994
### **...**

solution/0000-0099/0078.Subsets/README_EN.md

+30-2
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,41 @@
4343
### **Python3**
4444

4545
```python
46-
46+
class Solution:
47+
def subsets(self, nums: List[int]) -> List[List[int]]:
48+
def dfs(nums, i, res, path):
49+
res.append(copy.deepcopy(path))
50+
while i < len(nums):
51+
path.append(nums[i])
52+
dfs(nums, i + 1, res, path)
53+
path.pop()
54+
i += 1
55+
res, path = [], []
56+
dfs(nums, 0, res, path)
57+
return res
4758
```
4859

4960
### **Java**
5061

5162
```java
52-
63+
class Solution {
64+
public List<List<Integer>> subsets(int[] nums) {
65+
List<Integer> path = new ArrayList<>();
66+
List<List<Integer>> res = new ArrayList<>();
67+
dfs(nums, 0, res, path);
68+
return res;
69+
}
70+
71+
private void dfs(int[] nums, int i, List<List<Integer>> res, List<Integer> path) {
72+
res.add(new ArrayList<>(path));
73+
while (i < nums.length) {
74+
path.add(nums[i]);
75+
dfs(nums, i + 1, res, path);
76+
path.remove(path.size() - 1);
77+
++i;
78+
}
79+
}
80+
}
5381
```
5482

5583
### **...**
+13-13
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
11
class Solution {
22
public List<List<Integer>> subsets(int[] nums) {
3-
List<List<Integer>> list = new ArrayList<>();
4-
for (int num : nums) {
5-
int size = list.size();
6-
for (int j = 0; j < size; j++) {
7-
List<Integer> temp = new ArrayList<>(list.get(j));
8-
temp.add(num);
9-
list.add(temp);
10-
}
11-
List<Integer> one = new ArrayList<>();
12-
one.add(num);
13-
list.add(one);
3+
List<Integer> path = new ArrayList<>();
4+
List<List<Integer>> res = new ArrayList<>();
5+
dfs(nums, 0, res, path);
6+
return res;
7+
}
8+
9+
private void dfs(int[] nums, int i, List<List<Integer>> res, List<Integer> path) {
10+
res.add(new ArrayList<>(path));
11+
while (i < nums.length) {
12+
path.add(nums[i]);
13+
dfs(nums, i + 1, res, path);
14+
path.remove(path.size() - 1);
15+
++i;
1416
}
15-
list.add(new ArrayList<>());
16-
return list;
1717
}
1818
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
class Solution:
2+
def subsets(self, nums: List[int]) -> List[List[int]]:
3+
def dfs(nums, i, res, path):
4+
res.append(copy.deepcopy(path))
5+
while i < len(nums):
6+
path.append(nums[i])
7+
dfs(nums, i + 1, res, path)
8+
path.pop()
9+
i += 1
10+
res, path = [], []
11+
dfs(nums, 0, res, path)
12+
return res

solution/0000-0099/0090.Subsets II/README.md

+35-2
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,48 @@
3333
<!-- 这里可写当前语言的特殊实现逻辑 -->
3434

3535
```python
36-
36+
class Solution:
37+
def subsetsWithDup(self, nums: List[int]) -> List[List[int]]:
38+
def dfs(nums, i, res, path):
39+
res.append(copy.deepcopy(path))
40+
for j in range(i, len(nums)):
41+
if j != i and nums[j] == nums[j - 1]:
42+
continue
43+
path.append(nums[j])
44+
dfs(nums, j + 1, res, path)
45+
path.pop()
46+
res, path = [], []
47+
nums.sort()
48+
dfs(nums, 0, res, path)
49+
return res
3750
```
3851

3952
### **Java**
4053

4154
<!-- 这里可写当前语言的特殊实现逻辑 -->
4255

4356
```java
44-
57+
class Solution {
58+
public List<List<Integer>> subsetsWithDup(int[] nums) {
59+
List<Integer> path = new ArrayList<>();
60+
List<List<Integer>> res = new ArrayList<>();
61+
Arrays.sort(nums);
62+
dfs(nums, 0, res, path);
63+
return res;
64+
}
65+
66+
private void dfs(int[] nums, int i, List<List<Integer>> res, List<Integer> path) {
67+
res.add(new ArrayList<>(path));
68+
for (int j = i; j < nums.length; ++j) {
69+
if (j != i && nums[j] == nums[j - 1]) {
70+
continue;
71+
}
72+
path.add(nums[j]);
73+
dfs(nums, i + 1, res, path);
74+
path.remove(path.size() - 1);
75+
}
76+
}
77+
}
4578
```
4679

4780
### **...**

solution/0000-0099/0090.Subsets II/README_EN.md

+35-2
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,46 @@
4141
### **Python3**
4242

4343
```python
44-
44+
class Solution:
45+
def subsetsWithDup(self, nums: List[int]) -> List[List[int]]:
46+
def dfs(nums, i, res, path):
47+
res.append(copy.deepcopy(path))
48+
for j in range(i, len(nums)):
49+
if j != i and nums[j] == nums[j - 1]:
50+
continue
51+
path.append(nums[j])
52+
dfs(nums, j + 1, res, path)
53+
path.pop()
54+
res, path = [], []
55+
nums.sort()
56+
dfs(nums, 0, res, path)
57+
return res
4558
```
4659

4760
### **Java**
4861

4962
```java
50-
63+
class Solution {
64+
public List<List<Integer>> subsetsWithDup(int[] nums) {
65+
List<Integer> path = new ArrayList<>();
66+
List<List<Integer>> res = new ArrayList<>();
67+
Arrays.sort(nums);
68+
dfs(nums, 0, res, path);
69+
return res;
70+
}
71+
72+
private void dfs(int[] nums, int i, List<List<Integer>> res, List<Integer> path) {
73+
res.add(new ArrayList<>(path));
74+
for (int j = i; j < nums.length; ++j) {
75+
if (j != i && nums[j] == nums[j - 1]) {
76+
continue;
77+
}
78+
path.add(nums[j]);
79+
dfs(nums, i + 1, res, path);
80+
path.remove(path.size() - 1);
81+
}
82+
}
83+
}
5184
```
5285

5386
### **...**
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,21 @@
11
class Solution {
22
public List<List<Integer>> subsetsWithDup(int[] nums) {
3+
List<Integer> path = new ArrayList<>();
34
List<List<Integer>> res = new ArrayList<>();
4-
if(nums==null||nums.length==0) return res;
55
Arrays.sort(nums);
6-
backTrack(res, nums, 0, new ArrayList<>());
6+
dfs(nums, 0, res, path);
77
return res;
88
}
9-
private void backTrack(List<List<Integer>> res, int[] nums, int index, List<Integer> ls){
10-
res.add(new ArrayList<>(ls));
11-
if(index>=nums.length) return;
12-
for(int i=index;i<nums.length;i++){
13-
ls.add(nums[i]);
14-
backTrack(res, nums, i+1, ls);
15-
ls.remove(ls.size()-1);
16-
while(i<nums.length-1 && nums[i+1]==nums[i]) i++;
9+
10+
private void dfs(int[] nums, int i, List<List<Integer>> res, List<Integer> path) {
11+
res.add(new ArrayList<>(path));
12+
for (int j = i; j < nums.length; ++j) {
13+
if (j != i && nums[j] == nums[j - 1]) {
14+
continue;
15+
}
16+
path.add(nums[j]);
17+
dfs(nums, i + 1, res, path);
18+
path.remove(path.size() - 1);
1719
}
1820
}
1921
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
class Solution:
2+
def subsetsWithDup(self, nums: List[int]) -> List[List[int]]:
3+
def dfs(nums, i, res, path):
4+
res.append(copy.deepcopy(path))
5+
for j in range(i, len(nums)):
6+
if j != i and nums[j] == nums[j - 1]:
7+
continue
8+
path.append(nums[j])
9+
dfs(nums, j + 1, res, path)
10+
path.pop()
11+
res, path = [], []
12+
nums.sort()
13+
dfs(nums, 0, res, path)
14+
return res

0 commit comments

Comments
 (0)