FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
leetcode/algorithms/subsets/subsets.II.cpp at master · nuclearhacking/leetcode · GitHub
nuclearhacking
/
leetcode
Public
forked from
haoel/leetcode
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
leetcode
/
algorithms
/
subsets
/
subsets.II.cpp
Copy path
More file actions
More file actions
Latest commit
History
History
History
123 lines (110 loc) · 2.96 KB
Breadcrumbs
leetcode
/
algorithms
/
subsets
/
subsets.II.cpp
Copy path
File metadata and controls
123 lines (110 loc) · 2.96 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
//
Source : https://oj.leetcode.com/problems/subsets-ii/
//
Author : Hao Chen
//
Date : 2014-07-05
/*
*********************************************************************************
*
* Given a collection of integers that might contain duplicates, S, return all possible subsets.
*
* Note:
*
* Elements in a subset must be in non-descending order.
* The solution set must not contain duplicate subsets.
*
* For example,
* If S = [1,2,2], a solution is:
*
* [
* [2],
* [1],
* [1,2,2],
* [2,2],
* [1,2],
* []
* ]
*
*
*********************************************************************************
*/
#
include
<
stdio.h
>
#
include
<
stdlib.h
>
#
include
<
time.h
>
#
include
<
iostream
>
#
include
<
vector
>
#
include
<
algorithm
>
using
namespace
std
;
void
getCombination
(vector<
int
>& v,
int
n,
int
k, vector<
int
>& solution, vector< vector<
int
> >& result );
vector<vector<
int
> >
combine
(vector<
int
>& v,
int
k);
vector<vector<
int
> >
combine1
(vector<
int
>& v,
int
k);
vector<vector<
int
> >
combine2
(vector<
int
>& v,
int
k);
vector<vector<
int
> >
subsets
(vector<
int
> &S) {
vector<vector<
int
> > result;
sort
(S.
begin
(), S.
end
());
for
(
int
i=
0
; i<=S.
size
(); i++){
vector<vector<
int
> > r =
combine
(S, i);
result.
insert
(result.
end
(), r.
begin
(), r.
end
());
}
return
result;
}
vector<vector<
int
> >
combine
(vector<
int
> &v,
int
k) {
vector<vector<
int
> > result;
vector<
int
> solution;
getCombination
(v, v.
size
(), k, solution, result);
return
result;
}
void
getCombination
(vector<
int
> &v,
int
n,
int
k, vector<
int
>& solution, vector< vector<
int
> >& result ){
if
(k==
0
){
//
sort to meet LeetCode requirement
vector<
int
> v = solution;
sort
(v.
begin
(), v.
end
());
result.
push_back
(v);
return
;
}
for
(
int
i=n; i>
0
; i--){
solution.
push_back
(v[i-
1
]);
getCombination
(v, i-
1
, k-
1
, solution, result);
solution.
pop_back
();
//
skip the duplication
while
(i>
1
&& v[i-
1
]==v[i-
2
]) i--;
}
}
void
printResult
(vector<vector<
int
> >& result)
{
for
(
int
i=
0
; i<result.
size
(); i++){
cout <<
"
{
"
;
for
(
int
j=
0
; j<result[i].
size
(); j++){
cout <<
"
"
<< result[i][j];
}
cout <<
"
}
"
<<endl;
}
}
void
printArray
(vector<
int
>& v){
cout <<
"
{
"
;
for
(
int
i=
0
; i<v.
size
(); i++) {
cout <<
"
"
<< v[i];
}
cout <<
"
}
"
<< endl;
}
int
main
(
int
argc,
char
** argv)
{
srand
(
time
(
NULL
));
int
n =
3
;
if
(argc>
1
){
n =
atoi
(argv[
1
]);
}
vector<
int
> v;
for
(
int
i=n; i>
0
; i--){
v.
push_back
(
random
()%n+
1
);
}
printArray
(v);
cout <<
"
--------------------
"
<<endl;
vector<vector<
int
> > r =
subsets
(v);
printResult
(r);
cout <<
"
====================
"
<<endl;
int
a[] = {
1
,
4
,
4
,
4
,
4
,};
v.
clear
();
v.
insert
(v.
begin
(), a, a+
5
);
printArray
(v);
cout <<
"
--------------------
"
<<endl;
r =
subsets
(v);
printResult
(r);
cout <<
"
====================
"
<<endl;
}
Back
|
FazBrowse Home
|
New Git URL