-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.cpp
99 lines (89 loc) · 1.16 KB
/
main.cpp
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
#include <iostream>
using namespace std;
void wyswietl(int t[], int n)
{
for (int i=0;i<n;i++)cout << t[i]<<" ";
cout <<endl;
}
int maks(int t[], int n)
{
int m=t[0];
for (int i=0;i<n-1;i++)
{ if (t[i]<t[i+1]) m=t[i+1];
}
return m;
}
void podzialy (int t[],int n,int p)
{ if (p==0)wyswietl(t,n);
else {
if (t[p]==maks(t,p)+1) podzialy (t,n,p-1);
else {wyswietl(t,n);
t[p]+=1;
for (int i=p+1;i<n;i++)t[i]=1;
podzialy(t,n,n-1);}
}
}
int main()
{
int n;
cout << "Podaj ilosc elementow zbioru: ";
cin >> n;
int t[n];
for (int i=0;i<n;i++)t[i]=1;
podzialy(t,n,n-1);
return 0;
}
/*
1 1 1 1 1
1 1 1 1 2
1 1 1 2 1
1 1 1 2 2
1 1 1 2 3
1 1 2 1 1
1 1 2 1 2
1 1 2 1 3
1 1 2 2 1
1 1 2 2 2
1 1 2 2 3
1 1 2 3 1
1 1 2 3 2
1 1 2 3 3
1 1 2 3 4
1 2 1 1 1
1 2 1 1 2
1 2 1 1 3
1 2 1 2 1
1 2 1 2 2
1 2 1 2 3
1 2 1 3 1
1 2 1 3 2
1 2 1 3 3
1 2 1 3 4
1 2 2 1 1
1 2 2 1 2
1 2 2 1 3
1 2 2 2 1
1 2 2 2 2
1 2 2 2 3
1 2 2 3 1
1 2 2 3 2
1 2 2 3 3
1 2 2 3 4
1 2 3 1 1
1 2 3 1 2
1 2 3 1 3
1 2 3 1 4
1 2 3 2 1
1 2 3 2 2
1 2 3 2 3
1 2 3 2 4
1 2 3 3 1
1 2 3 3 2
1 2 3 3 3
1 2 3 3 4
1 2 3 4 1
1 2 3 4 2
1 2 3 4 3
1 2 3 4 4
1 2 3 4 5
*/