TheAlgorithms-C-Plus-Plus/combsort.cpp

52 lines
1.0 KiB
C++
Raw Normal View History

//Kind of better version of Bubble sort.
//While Bubble sort is comparering adjacent value, Combsort is using gap larger than 1
//Best case: O(n)
//Worst case: O(n ^ 2)
2018-01-04 02:35:42 +08:00
#include <iostream>
2017-10-15 16:19:32 +08:00
using namespace std;
int a[100005];
int n;
int FindNextGap(int x) {
x = (x * 10) / 13;
return max(1, x);
}
void CombSort(int a[], int l, int r) {
//Init gap
2017-10-15 16:19:32 +08:00
int gap = n;
//Initialize swapped as true to make sure that loop runs
2017-10-15 16:19:32 +08:00
bool swapped = true;
//Keep running until gap = 1 or none elements were swapped
2017-10-15 16:19:32 +08:00
while (gap != 1 || swapped) {
//Find next gap
2017-10-15 16:19:32 +08:00
gap = FindNextGap(gap);
2017-10-15 16:19:32 +08:00
swapped = false;
// Compare all elements with current gap
2017-10-15 16:19:32 +08:00
for(int i = l; i <= r - gap; ++i) {
if (a[i] > a[i + gap]) {
swap(a[i], a[i + gap]);
swapped = true;
}
}
}
}
int main() {
cin >> n;
for(int i = 1; i <= n; ++i) cin >> a[i];
CombSort(a, 1, n);
for(int i = 1; i <= n; ++i) cout << a[i] << ' ';
return 0;
}