-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexp4.cpp
323 lines (311 loc) · 7.56 KB
/
exp4.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
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
// #include<bits/stdc++.h>
// int main()
// {
// int n;
// std::cin >> n;
// std::vector<int> a(n);
// for(int i = 0; i < n; i++)
// {
// std::cin >> a[i];
// }
// std::sort(a.begin(), a.end());
// for(int i = 0; i < n; i++)
// {
// std::cout << a[i];
// if(i != n - 1) std::cout << " ";
// }
// }
// #include <bits/stdc++.h>
// int main()
// {
// int n;
// std::priority_queue<int, std::vector<int>, std::greater<>> p;
// std::cin >> n;
// for(int i = 0; i < n; i++)
// {
// int t;
// std::cin >> t;
// p.push(t);
// }
// for(int i = 0; i < n; i++)
// {
// std::cout << p.top();
// p.pop();
// std::cout << (i == n - 1 ? "" : " ");
// }
// return 0;
// }
// #include <bits/stdc++.h>
// int main()
// {
// std::ios::sync_with_stdio(false);
// std::cin.tie(nullptr);
// std::cout.tie(nullptr);
// int m, n;
// std::cin >> m >> n;
// auto check = [&](int t)
// {
// if (t == 1)
// return false;
// for (int i = 2; i * i <= t; i++)
// {
// if (t % i == 0)
// return false;
// }
// return true;
// };
// if (!check(m))
// {
// for (int i = m;; i++)
// {
// if (check(i))
// {
// m = i;
// break;
// }
// }
// }
// std::vector<int> a(n), ans(n), vis(m, 0);
// for (int i = 0; i < n; i++)
// {
// std::cin >> a[i];
// }
// for (int i = 0; i < n; i++)
// {
// int k = a[i] % m;
// int t = k, j;
// for (j = 0; j < m; j++)
// {
// k = t + j * j;
// if (!vis[k % m])
// {
// vis[k % m] = 1;
// ans[i] = k % m;
// break;
// }
// }
// if (j == m)
// {
// ans[i] = -1;
// }
// }
// for (int i = 0; i < n; i++)
// {
// if (ans[i] == -1)
// std::cout << "-";
// else
// std::cout << ans[i];
// if (i != n - 1)
// std::cout << " ";
// }
// return 0;
// }
#include <iostream>
template <class T>
struct RecordType
{
T key;
bool operator<(const RecordType<T> &rec) const
{
return this->key < rec.key;
}
bool operator>(const RecordType<T> &rec) const
{
return this->key > rec.key;
}
bool operator==(const RecordType<T> &rec) const
{
return this->key == rec.key;
}
RecordType<T> &operator=(const RecordType<T> &rec)
{
if (this == &rec)
return *this;
this->key = rec.key;
return *this;
}
};
template <class T>
class ListToSort
{
private:
RecordType<T> *r;
int length;
int size;
public:
explicit ListToSort(int size) : size(size), length(0), r(new RecordType<T>[size]) {}
~ListToSort()
{
delete[] r;
}
ListToSort<T> &operator=(const ListToSort<T> &list)
{
if (this == &list)
{
return *this;
}
this->length = list.length;
this->size = list.size;
for (int i = 0; i < length; i++)
{
this->r[i] = list.r[i];
}
return *this;
}
int directInsertSort(const RecordType<T> &rec)
{
int i = length - 1;
while (rec < r[i] && i != -1)
{
r[i + 1] = r[i];
i--;
}
r[i + 1] = rec;
length++;
return i + 1;
}
int binaryInsertSort(const RecordType<T> &rec)
{
int low = 0, high = length - 1;
int mid;
// 当 length 等于 0 时,不会循环
while (low <= high)
{ // 在 low 等于 high 时,说明 low<=mid<=high,low 再循环一次加一,保持排序的稳定性
mid = (low + high) / 2;
if (rec < r[mid])
high = mid - 1;
else if (rec > r[mid] || rec == r[mid])
low = mid + 1;
}
for (int i = length; i > low; i--)
{
r[i] = r[i - 1];
}
r[low] = rec;
length++;
return low;
}
void shellSort(const RecordType<T> *r, const int length)
{
// 首先把记录数组复制过来
for (int i = 0; i < length; i++)
{
this->r[i] = r[i];
}
this->length = length;
// 选取间隔
for (int i = length / 2; i >= 1; i = i / 2)
{
RecordType<T> temp;
// 逐个遍历记录与该间隔下的前一个进行比较
for (int j = i; j < length; j++)
{
// 发现降序部分就开始调整
temp = this->r[j];
if (this->r[j] < this->r[j - i])
{
int k;
for (k = j - i; k >= 0 && this->r[k] > temp; k -= i)
{
this->r[k + i] = this->r[k];
}
// k 退出时就是正好这一串大于 temp 的同间隔的序列的前面一个小于 temp 的位置
// 所以插到 k+i,也就是大于 temp 的序列的原来开头的位置
this->r[k + i] = temp;
}
}
}
}
// 扑嘟扑嘟沉到底排序🤭
void bubbleSort(const RecordType<T> *r, const int length)
{
// 先复制记录
for (int i = 0; i < length; i++)
{
this->r[i] = r[i];
}
this->length = length;
RecordType<T> swap;
for (int i = 0; i < length - 1; i++)
{
for (int j = 0; j < length - i; j++)
{ // 每次第 i+1 大的记录都会沉底
std::cout << j << "\n";
if (this->r[j] > this->r[j + 1])
{
swap = this->r[j];
this->r[j] = this->r[j + 1];
this->r[j + 1] = swap;
}
}
}
}
int get(const int i, RecordType<T> &rec) const
{
if (0 <= i && i < length)
{
rec = r[i];
return 0;
}
else
{
return -1;
}
}
void show()
{
for (int i = 0; i < length; i++)
{
std::cout << r[i].key << " ";
}
}
};
int main()
{
int choice = 3; // 0 直接插入排序,1 折半插入排序,2 希尔排序,3 冒泡排序
using namespace std;
int n;
cin >> n;
ListToSort<int> list(n);
RecordType<int> rec;
if (choice == 0 || choice == 1)
{
// 直接插入排序和折半插入排序
for (int i = 0; i < n; i++)
{
cin >> rec.key;
if (choice == 0)
list.directInsertSort(rec);
else if (choice == 1)
list.binaryInsertSort(rec);
}
}
else if (choice == 2)
{
// 希尔排序
RecordType<int> *r = new RecordType<int>[n];
for (int i = 0; i < n; i++)
{
cin >> r[i].key;
}
list.shellSort(r, n);
}
else if (choice == 3)
{
RecordType<int> *r = new RecordType<int>[n];
for (int i = 0; i < n; i++)
{
cin >> r[i].key;
}
list.bubbleSort(r, n);
}
// 显示结果
for (int i = 0; i < n; i++)
{
list.get(i, rec);
cout << rec.key;
if (i != n - 1)
cout << " ";
}
return 0;
}