-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path18.SortFinal.cpp
214 lines (207 loc) · 4.91 KB
/
18.SortFinal.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
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
#include <iostream>
using namespace std;
int jumlah, pilihan, metod;
void Bubble(string *datax,int method,int ujung);
void Tampil(string *datax,int ujung);
void Selection(string *datax,int method,int ujung);
void Insertion(string *a,int method,int n);
int main()
{
cout<<"Nama : Muhammad Rafly Indrawan\nNIM : 19.11.2888\n";
cout<<"Masukkan Jumlah Data = ";
cin>>jumlah;
string datax[jumlah];
for (int x=0;x<jumlah;x++)
{
cout<<"Masukkan Data ke-"<<x+1<<" : ";
cin>>datax[x];
}
metode:
cout<<"Silahkan Pilih Metode Sorting :\n";
cout<<"1.Bubble Sort\n";
cout<<"2.Selection Sort\n";
cout<<"3.Insertion Sort\n";
cout<<"Pilihan Anda = ";
cin>>pilihan;
if(pilihan==1)
{
cout<<"Silahkan Pilih Jenis Pengurutan\n";
cout<<"1.Ascending\n";
cout<<"2.Descending\n";
cout<<"Pilihan Anda = ";
cin>>metod;
system("cls");
Bubble(datax, metod, jumlah);
}
else if(pilihan==2)
{
cout<<"Silahkan Pilih Jenis Pengurutan\n";
cout<<"1.Ascending\n";
cout<<"2.Descending\n";
cout<<"Pilihan Anda = ";
cin>>metod;
system("cls");
Selection(datax,metod,jumlah);
}
else if(pilihan==3)
{
cout<<"Silahkan Pilih Jenis Pengurutan\n";
cout<<"1.Ascending\n";
cout<<"2.Descending\n";
cout<<"Pilihan Anda = ";
cin >>metod;
system("cls");
Insertion(datax,metod,jumlah);
}
else
{
cout<<"Input Salah !\n";
goto metode;
}
}
void tampil(string *datax,int ujung)
{
for(int x=0;x<ujung;x++)
{
cout<<datax[x]<<" ";
}
}
void Bubble(string *datax,int method,int ujung)
{
cout << "Data Sebelum Perurutan (Bubble) : \n";
tampil(datax,ujung);
if(method==1)
{
cout<<"\nData Setelah Perurutan (Bubble Asc) : \n";
for(int x=1;x<ujung;x++)
{
for(int y=0;y<ujung-x;y++)
{
if(datax[y]>datax[y+1])
{
string temp;
temp=datax[y];
datax[y]=datax[y+1];
datax[y+1]=temp;
}
}
cout<<"\nTahap ke - "<<x<<" = ";
tampil(datax,ujung);
}
}
else if(method==2)
{
cout<<"\nData Setelah Perurutan (Bubble Dsc) : \n";
for (int x=1;x<ujung;x++)
{
for (int y=0;y<ujung-x;y++)
{
if(datax[y]<datax[y+1])
{
string temp;
temp=datax[y];
datax[y]=datax[y+1];
datax[y+1]=temp;
}
}
cout<<"\nTahap ke - "<<x<<" = ";
tampil(datax,ujung);
}
}
else
{
cout<<"Pilihan Anda Salah !";
}
}
void Selection(string *datax,int method,int ujung)
{
cout<<"Data Sebelum Perurutan (Selection) : \n";
int mins;
string temp;
tampil(datax,ujung);
if(method==1)
{
cout<<"\nData Setelah Perurutan (Selection Asc) : \n";
for(int i=0;i<ujung;i++)
{
mins=i;
for(int j=i+1;j<ujung;j++)
{
if (datax[mins]>datax[j])
mins=j;
}
if (datax[i]!=datax[mins])
{
temp=datax[i];
datax[i]=datax[mins];
datax[mins]=temp;
}
}
tampil(datax,ujung);
}
else if(method==2){
cout << "\nData Setelah Perurutan (Selection Desc) : \n";
for (int i=0;i<ujung;i++)
{
mins=i;
for(int j=i+1;j<ujung;j++)
{
if(datax[mins]<datax[j])
mins=j;
}
if (datax[i]!=datax[mins])
{
temp=datax[i];
datax[i]=datax[mins];
datax[mins]=temp;
}
}
tampil(datax,ujung);
}
else
{
cout<<"Pilihan Anda Salah !";
}
}
void Insertion(string *a,int method,int n)
{
cout<<"Data Sebelum Perurutan (Insertion) : \n";
tampil(a,n);
int j;
string temp;
int i;
if(method==1)
{
cout<<"\nData Setelah Perurutan (Insertion Asc) : \n";
for(i=1;i<n;i++)
{
temp=a[i];
j=i-1;
while(j>=0&&a[j]>temp)
{
a[j+1]=a[j];
j=j-1;
}
a[j+1]=temp;
}
tampil(a,n);
}
else if(method==2)
{
cout << "\nData Setelah Perurutan (Insertion Desc) : \n";
for (j=1;j<n;j++)
{
temp=a[j];
for(i=j-1;(i>=0)&&(a[i]<temp);i--)
{
a[i+1]=a[i];
}
a[i+1]=temp;
}
tampil(a,n);
}
else
{
cout<<"Pilihan Anda Salah !";
}
}