-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsort.h
257 lines (199 loc) · 6.18 KB
/
sort.h
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
#pragma once
#include <vector>
#include <iostream>
#include <algorithm>
#include <stack>
#include <atomic>
#include <chrono>
/*
声明
*/
class SortArray{
public:
SortArray() = delete;
SortArray(const std::vector<int>& arr) : _res(arr) {};
// 快速排序(接口)
void quickSort();
// 冒泡排序(接口)
void bubbleSort();
// 选择排序接口
void selectionSort();
void show_time(){
std::cout << "快速排序用时:" << this->_quick_time.count() << "s" << std::endl;
std::cout << "冒泡排序用时:" << this->_bubble_time.count() << "s" << std::endl;
std::cout << "选择排序用时:" << this->_selection_time.count() << "s" << std::endl;
}
// 看程序是否执行完了
// 原子操作,起到通知作用
// 似乎用condition_variable会更好
std::atomic<bool> _run_quick{ false };
std::atomic<bool> _run_bubble{ false };
std::atomic<bool> _run_selection{ false };
private:
// 资源数组
const std::vector<int> _res;
// 检验是否排序成功
bool verify(const std::vector<int>& arr);
// 程序计时
std::chrono::duration<double> _quick_time; // 快排用时
std::chrono::duration<double> _bubble_time; // 冒泡排序用时
std::chrono::duration<double> _selection_time; // 选择排序用时
// 内置接口
void quickSort(std::vector<int>& arr);
void bubbleSort(std::vector<int>& arr);
void selectionSort(std::vector<int> &arr);
};
/*
定义开始
*/
bool SortArray::verify(const std::vector<int>& arr){
if(arr.empty()){
std::cerr << "程序出错,数组为空";
return false;
}
return std::is_sorted(arr.begin(), arr.end());
}
void SortArray::quickSort()
{
// 判空
if(this->_res.empty()){
std::cerr << "资源数组_res为空" << std::endl;
return;
}
// 创建拷贝
std::vector<int> res = this->_res;
// 开始排序、计时
quickSort(res);
// 运行完毕
_run_quick.store(true, std::memory_order_relaxed);
}
void SortArray::quickSort(std::vector<int>& arr) {
std::stack<std::pair<int, int>> stack;
stack.push(std::make_pair(0, arr.size() - 1));
// 开始计时:
auto start = std::chrono::high_resolution_clock::now(); // 获取当前时间点
while (!stack.empty()) {
int low = stack.top().first;
int high = stack.top().second;
stack.pop();
// 初始化的基准数是arr[0]
int pivot = arr[low];
int i = low + 1;
int j = high;
// 在i, j范围内相对有序
while (i <= j) {
while (i <= j && arr[i] <= pivot) {
++i;
}
// 现在arr[i] > 基准数
// 不符合排序要求了
while (i <= j && arr[j] > pivot) {
--j;
}
// 现在arr[j] <= 基准数
// 也不符合要求了
if (i < j) {
// 调换它们两个的位置
std::swap(arr[i], arr[j]);
}
}
// 更换基准数位置
// 避免反复以同一个基准数为标准
std::swap(arr[low], arr[j]);
if (low < j - 1) {
stack.push(std::make_pair(low, j - 1));
}
if (j + 1 < high) {
stack.push(std::make_pair(j + 1, high));
}
}
// 停止计时:
auto end = std::chrono::high_resolution_clock::now(); // 获取当前时间点
std::chrono::duration<double, std::milli> elapsed = end - start; // 计算时间差,单位是毫秒
this->_quick_time += elapsed;
// 测试是否排序成功
bool ordered = verify(arr);
if(ordered){
std::cout << "快速排序,成功!" << std::endl;
}
else{
std::cerr << "快速排序,失败" << std::endl;
}
return;
}
void SortArray::bubbleSort()
{
// 判空
if(this->_res.empty()){
std::cerr << "资源数组_res为空" << std::endl;
return;
}
// 创建拷贝
std::vector<int> res = this->_res;
// 开始排序、计时
bubbleSort(res);
// 更改状态
_run_bubble.store(true, std::memory_order_relaxed);
}
void SortArray::bubbleSort(std::vector<int>& arr){
// 开始计时:
auto start = std::chrono::high_resolution_clock::now(); // 获取当前时间点
for(int left=0; left < static_cast<int>(arr.size()-1); left++){
for(int right=left+1; right < static_cast<int>(arr.size()); right++){
if(arr[left] > arr[right]){
std::swap(arr[left], arr[right]);
}
}
}
// 停止计时:
auto end = std::chrono::high_resolution_clock::now(); // 获取当前时间点
std::chrono::duration<double, std::milli> elapsed = end - start; // 计算时间差,单位是毫秒
this->_bubble_time += elapsed;
// 是否有序?
bool ordered = verify(arr);
if(ordered){
std::cout << "冒泡排序,成功!" << std::endl;
}
else{
std::cerr << "冒泡排序,失败" << std::endl;
}
}
void SortArray::selectionSort(){
// 判空
if(this->_res.empty()){
std::cerr << "资源数组_res为空" << std::endl;
return;
}
// 创建拷贝
std::vector<int> res = this->_res;
// 开始排序、计时
selectionSort(res);
// 更改状态
_run_selection.store(true, std::memory_order_relaxed);
}
void SortArray::selectionSort(std::vector<int> &arr) {
auto start = std::chrono::high_resolution_clock::now(); // 获取当前时间点
for (int i = 0; i < static_cast<int>(arr.size()-1); i++) {
int min_idx = i;
for (int j = i + 1; j < static_cast<int>(arr.size()); j++) {
if (arr[j] < arr[min_idx]) {
min_idx = j;
}
}
if (min_idx != i) {
std::swap(arr[i], arr[min_idx]);
}
}
// 停止计时:
auto end = std::chrono::high_resolution_clock::now(); // 获取当前时间点
std::chrono::duration<double, std::milli> elapsed = end - start; // 计算时间差,单位是毫秒
this->_selection_time += elapsed;
// 是否有序?
bool ordered = verify(arr);
if(ordered){
std::cout << "选择排序,成功!" << std::endl;
}
else{
std::cerr << "选择排序,失败" << std::endl;
}
}