앞에서 순열과 조합에 대해서 정리해보았습니다.
아래 코드는 중복을 허용할때와 하지않을때 코드를 모두 정리하였습니다.
N=3 {1,2,3} 존재시 R=2
순열은 N개의 항목에서 R개를 선택할때 순서를 가지면서 나열하는 방법입니다.
{1,2},{1,3},{2,1},{2,3},{3,1},{3,2}
중복 순열은 R개 선택시 중복이 가능하다는 의미입니다.
{1,1},{1,2},{1,3},{2,1},{2,2},{2,3},{3,1},{3,2},{3,3}
조합은 N개의 항목에서 R개를 선택할때 순서를 갖지지 않은면서 나열하는 방법입니다.
{1,2},{1,3},{2,3}
중복 조합은 R개 선택시 중복이 가능하다는 의미입니다.
{1,1},{1,2},{1,3},{2,2},{2,3},{3,3}
하지만 아래 코드가 일반적으로 책에서 많이 나오는 방식입니다. 따라서 자세한 하지 않겠습니다.
다음에는 아래 코드 보다 이해하기 쉬운 코드를 만들어서 공유하도록 하겠습니다.
C, pasted just now:
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
| #include <stdio.h>
#define NN 5
int array[] = {0, 1, 2, 3, 4};
int r = 3; //추출할 개수
int N = NN;
int out[NN];
int count = 0;
void swap(int i, int start) {
int temp = out[i];
out[i] = out[start];
out[start] = temp;
}
void permutation(int start, int end) {
int i;
if(start == end) {
for(i = 0; i < end; i++) {
printf("%d ",out[i]);
}
printf("\n");
count++;
return;
}
for(i = start; i < N; i++) {
swap(i, start);
permutation(start+1, end);
swap(i, start);
}
}
void dpermutation(int start, int end) {
int i;
if(start == end) {
for(i = 0; i < end; i++) {
printf("%d ",out[i]);
}
printf("\n");
count++;
return;
}
for(i = 0; i < N; i++) {
out[start] = array[i];
dpermutation(start+1, end);
}
}
void combination(int start, int end, int index) {
int i;
if(end==0) {
for(i = 0; i < start; i++) {
printf("%d ",out[i]);
}
printf("\n");
count++;
}else if (index == N) {
return;
} else {
out[start] = array[index];
combination(start+1, end-1, index+1); // 여기 다름
combination(start, end, index+1);
}
}
void dcombination(int start, int end, int index) {
int i;
if (end == 0) {
for(i = 0; i < start; i++) {
printf("%d ",out[i]);
}
printf("\n");
count++;
} else if (index == N) {
return;
} else {
out[start] = array[index];
dcombination(start+1, end-1, index); // 여기 다름
dcombination(start, end, index+1);
}
}
void main()
{
int i;
//중복 조합
count = 0;
dcombination(0, r, 0);
printf("1:%d\n\n",count);
//조합
count = 0;
combination(0, r, 0);
printf("2:%d\n\n",count);
//중복 순열
count = 0;
dpermutation(0, r);
printf("3:%d\n\n",count);
//순열
//순열시 출력에 초기값 필요함
for(i = 0; i < N; i++) {
out[i] = array[i];
}
count = 0;
permutation(0, r);
printf("4:%d\n\n",count);
}
|
Output:
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
| 0 0 0
0 0 1
0 0 2
0 0 3
0 0 4
0 1 1
0 1 2
0 1 3
0 1 4
0 2 2
0 2 3
0 2 4
0 3 3
0 3 4
0 4 4
1 1 1
1 1 2
1 1 3
1 1 4
1 2 2
1 2 3
1 2 4
1 3 3
1 3 4
1 4 4
2 2 2
2 2 3
2 2 4
2 3 3
2 3 4
2 4 4
3 3 3
3 3 4
3 4 4
4 4 4
1:35
0 1 2
0 1 3
0 1 4
0 2 3
0 2 4
0 3 4
1 2 3
1 2 4
1 3 4
2 3 4
2:10
0 0 0
0 0 1
0 0 2
0 0 3
0 0 4
0 1 0
0 1 1
0 1 2
0 1 3
0 1 4
0 2 0
0 2 1
0 2 2
0 2 3
0 2 4
0 3 0
0 3 1
0 3 2
0 3 3
0 3 4
0 4 0
0 4 1
0 4 2
0 4 3
0 4 4
1 0 0
1 0 1
1 0 2
1 0 3
1 0 4
1 1 0
1 1 1
1 1 2
1 1 3
1 1 4
1 2 0
1 2 1
1 2 2
1 2 3
1 2 4
1 3 0
1 3 1
1 3 2
1 3 3
1 3 4
1 4 0
1 4 1
1 4 2
1 4 3
1 4 4
2 0 0
2 0 1
2 0 2
2 0 3
2 0 4
2 1 0
2 1 1
2 1 2
2 1 3
2 1 4
2 2 0
2 2 1
2 2 2
2 2 3
2 2 4
2 3 0
2 3 1
2 3 2
2 3 3
2 3 4
2 4 0
2 4 1
2 4 2
2 4 3
2 4 4
3 0 0
3 0 1
3 0 2
3 0 3
3 0 4
3 1 0
3 1 1
3 1 2
3 1 3
3 1 4
3 2 0
3 2 1
3 2 2
3 2 3
3 2 4
3 3 0
3 3 1
3 3 2
3 3 3
3 3 4
3 4 0
3 4 1
3 4 2
3 4 3
3 4 4
4 0 0
4 0 1
4 0 2
4 0 3
4 0 4
4 1 0
4 1 1
4 1 2
4 1 3
4 1 4
4 2 0
4 2 1
4 2 2
4 2 3
4 2 4
4 3 0
4 3 1
4 3 2
4 3 3
4 3 4
4 4 0
4 4 1
4 4 2
4 4 3
4 4 4
3:125
0 1 2
0 1 3
0 1 4
0 2 1
0 2 3
0 2 4
0 3 2
0 3 1
0 3 4
0 4 2
0 4 3
0 4 1
1 0 2
1 0 3
1 0 4
1 2 0
1 2 3
1 2 4
1 3 2
1 3 0
1 3 4
1 4 2
1 4 3
1 4 0
2 1 0
2 1 3
2 1 4
2 0 1
2 0 3
2 0 4
2 3 0
2 3 1
2 3 4
2 4 0
2 4 3
2 4 1
3 1 2
3 1 0
3 1 4
3 2 1
3 2 0
3 2 4
3 0 2
3 0 1
3 0 4
3 4 2
3 4 0
3 4 1
4 1 2
4 1 3
4 1 0
4 2 1
4 2 3
4 2 0
4 3 2
4 3 1
4 3 0
4 0 2
4 0 3
4 0 1
4:60
|
댓글 없음:
댓글 쓰기