-
Notifications
You must be signed in to change notification settings - Fork 254
/
Copy path18 ShellSort.cpp
45 lines (38 loc) · 980 Bytes
/
18 ShellSort.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
#include <iostream>
using std::cout;
using std::endl;
using std::flush;
using std::string;
template <class T>
void Print(T& vec, int n, string s){
cout << s << ": [" << flush;
for (int i=0; i<n; i++){
cout << vec[i] << flush;
if (i < n-1){
cout << ", " << flush;
}
}
cout << "]" << endl;
}
// Code is similar to Insertion Sort with some modifications
void ShellSort(int A[], int n){
for (int gap=n/2; gap>=1; gap/=2){
for (int j=gap; j<n; j++){
int temp = A[j];
int i = j - gap;
while (i >= 0 && A[i] > temp){
A[i+gap] = A[i];
i = i-gap;
}
A[i+gap] = temp;
}
}
}
int main() {
int A[] = {11, 13, 7, 12, 16, 9, 24, 5, 10, 3};
int n = sizeof(A)/sizeof(A[0]);
Print(A, n, "\t\tA");
ShellSort(A, n);
Print(A, n, " Sorted A");
return 0;
}