-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSort.cpp
238 lines (213 loc) · 4.01 KB
/
Sort.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
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <string>
#include <iostream>
#include <math.h>
using namespace std;
//打印数组
void PrintArray(int a[],int len)
{
for(int i=0;i<len;i++)
{
if(i==len-1)
cout<<a[i];
else
cout<<a[i]<<", ";
}
cout<<endl;
}
// 交换两个整数
void Swap(int &a, int &b)
{
if(a==b)
return;
a = a^b;
b = a^b;
a = a^b;
}
// 冒泡排序:
// 相邻元素两两比较,大的往后放,一次循环后,最大的出现在最后面
void BubbleSort(int a[], int num)
{
if(NULL==a || num<=0)
return;
for(int i=0;i<num-1;i++)
{
for(int j=0;j<num-1-i;j++)
{
if(a[j]>a[j+1])
Swap(a[j],a[j+1]);
}
}
}
// 选择排序:
// 第i(i=0,1,2...)个元素依次和后面的元素比较,小的放前面,第一次循环后,最小的出现在最左侧
void SelectSort(int a[], int num)
{
if(NULL==a||num<=0)
return;
for(int i=0;i<num-1;i++)
{
for(int j=i+1;j<num;j++)
{
if(a[i]>a[j])
Swap(a[i],a[j]);
}
}
}
//插入排序:
// 将前i个元素假象为有序数组,对前i个元素进行排序,小的往前放
void InsertSort(int a[], int num)
{
if(NULL==a||num<=0)
return;
for(int i=1;i<num;i++)
{
for(int j=i;j>0;j--)
{
if(a[j]<a[j-1])
{
Swap(a[j],a[j-1]);
}
}
}
}
// 快速排序:
// 每次循环选一个基准值,比基准值小的放在基准值左边,比基准值大的放在基准值右边
int getPartition(int a[], int low, int high)
{
if(NULL==a||low>high)
return -1;
int pivotKey = a[low];
while(low<high)
{
while(low<high && a[high]>=pivotKey)
--high;
Swap(a[low],a[high]);
while(low<high && a[low]<=pivotKey)
++low;
Swap(a[low],a[high]);
}
return low;
}
// 快速排序
void QuickSort(int a[], int low, int high)
{
if(low<high)
{
int pivotIndex = getPartition(a,low,high);
QuickSort(a,low,pivotIndex-1);
QuickSort(a,pivotIndex+1,high);
}
}
// 归并排序:
// 采用分治思想(合并有序数组),先将数组分成一个个小数组进行排序,在递归合并各个小数组
void MergeArray(int a[], int low, int mid,int high, int pArray[])
{
int i=low,j=mid+1;
int m=mid,n=high;
int k=0;
while(i<=m && j<=n)
{
if(a[i]<a[j])
pArray[k++] = a[i++];
else
pArray[k++] = a[j++];
}
while(i<=m)
pArray[k++] = a[i++];
while(j<=n)
pArray[k++] = a[j++];
for(int i=0;i<k;i++)
a[low+i] = pArray[i];
}
void mergesort(int a[], int low, int high, int pArray[])
{
if(low<high)
{
int mid = (low+high)/2;
mergesort(a,low,mid,pArray);
mergesort(a,mid+1,high,pArray);
MergeArray(a,low,mid,high,pArray);
}
}
int MergeSort(int a[], int num)
{
if(NULL==a||num<=0)
return -1;
int *pArray = new int[num];
mergesort(a,0,num-1,pArray);
delete []pArray;
return 1;
}
// 求一个整数二进制格式中1的个数
int getNumberOf1InBinary(int num)
{
int count = 0;
while(num)
{
count++;
num = num&(num-1);
}
return count;
}
int MinInOrder(int a[], int low, int high)
{
int result = a[low];
for(int i=low+1;i<=high;i++)
{
if(a[i]<result)
result = a[i];
}
return result;
}
int MinValueInRotateArray(int a[], int num)
{
int low = 0;
int high = num-1;
int mid = low;
while(a[low]>=a[high])
{
if(high-low==1)
{
mid = high;
break;
}
mid = (low+high)/2;
// if(a[low]==a[high] && a[low]==a[mid])
// return MinInOrder(a,low,high);
if(a[mid]>=a[low])
low = mid;
else if(a[mid]<=a[high])
high = mid;
}
return a[mid];
}
bool BinarySearch(int a[], int value)
{
// if(NULL==a)
return false;
}
int main(int argc, char **argv)
{
int a[] = {3,1,5,4,6,2};
int a_len = sizeof(a)/sizeof(a[0]);
int rotate_array[] = {1,1,1,0,1};
int b[] = {2,1,4,3,5};
int b_len = sizeof(b)/sizeof(b[0]);
// cout<<MinValueInRotateArray(rotate_array,5)<<endl;
PrintArray(b,b_len);
// PrintArray(b,b_len);
// QuickSort(a,0,a_len-1);
// PrintArray(a,a_len);
// BubbleSort(a,6);
// SelectSort(a,6);
// InsertSort(a,6);
MergeSort(b,b_len);
PrintArray(b,b_len);
// cout<<(3+4)/2<<endl;
// cout<<getMaxProduct(16)<<endl;
// cout<<getNumberOf1InBinary(7)<<endl;
return 0;
}