added comp sort in cpp (#66)
* add binary search in js * added merge sort in c * added quick sort in cpp * modified quick sort * added heap sort * updated readme.md * added counting sort * added bucket sort * added shell sort * added comb sortpull/71/head
parent
98d54a67d1
commit
6526860e53
|
@ -10,8 +10,10 @@
|
||||||
6. [Heap Sort](c-or-cpp/heap-sort.cpp)
|
6. [Heap Sort](c-or-cpp/heap-sort.cpp)
|
||||||
7. [Counting Sort](c-or-cpp/counting-sort.cpp)
|
7. [Counting Sort](c-or-cpp/counting-sort.cpp)
|
||||||
8. [Bucket Sort](c-or-cpp/bucket-sort.cpp)
|
8. [Bucket Sort](c-or-cpp/bucket-sort.cpp)
|
||||||
9. [Radix Sort](c-or-cpp/radix-sort.cpp)
|
9. [Radix Sort](c-or-cpp/radix-sort.cpp)
|
||||||
10. [Shell Sort](c-or-cpp/shell-sort.cpp)
|
10. [Shell Sort](c-or-cpp/shell-sort.cpp)
|
||||||
|
11. [Comb Sort](c-or-cpp/comb-sort.cpp)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
### C#
|
### C#
|
||||||
|
|
|
@ -0,0 +1,67 @@
|
||||||
|
#include <bits/stdc++.h>
|
||||||
|
using namespace std;
|
||||||
|
int nextGap(int gap);
|
||||||
|
void combSort(int a[], int n);
|
||||||
|
|
||||||
|
// Driver program
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
cout << "Enter the length of array" << endl;
|
||||||
|
int n;
|
||||||
|
cin >> n;
|
||||||
|
int *a = new int(n);
|
||||||
|
// Getting elements of array
|
||||||
|
cout << "Enter the elements of array" << endl;
|
||||||
|
for (int i = 0; i < n; i++)
|
||||||
|
cin >> a[i];
|
||||||
|
cout << "Original array: \n";
|
||||||
|
for (int i = 0; i < n; i++)
|
||||||
|
cout << a[i] << " ";
|
||||||
|
combSort(a, n);
|
||||||
|
cout << "\nSorted array: \n";
|
||||||
|
for (int i = 0; i < n; i++)
|
||||||
|
cout << a[i] << " ";
|
||||||
|
delete (a);
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
int nextGap(int gap)
|
||||||
|
{
|
||||||
|
// Shrink gap by Shrink factor
|
||||||
|
gap = (gap * 10) / 13;
|
||||||
|
if (gap < 1)
|
||||||
|
return 1;
|
||||||
|
return gap;
|
||||||
|
}
|
||||||
|
|
||||||
|
void combSort(int a[], int n)
|
||||||
|
{
|
||||||
|
// Initialize gap
|
||||||
|
int gap = n;
|
||||||
|
|
||||||
|
// Initialize swapped as true to make sure that
|
||||||
|
// loop runs
|
||||||
|
bool isSwapped = true;
|
||||||
|
|
||||||
|
// Keep running while gap is more than 1 and last
|
||||||
|
// iteration caused a swap
|
||||||
|
while (gap != 1 || isSwapped == true)
|
||||||
|
{
|
||||||
|
// Find next gap
|
||||||
|
gap = nextGap(gap);
|
||||||
|
|
||||||
|
// Initialize swapped as false so that we can
|
||||||
|
// check if swap happened or not
|
||||||
|
isSwapped = false;
|
||||||
|
|
||||||
|
// Compare all elements with current gap
|
||||||
|
for (int i = 0; i < n - gap; i++)
|
||||||
|
{
|
||||||
|
if (a[i] > a[i + gap])
|
||||||
|
{
|
||||||
|
swap(a[i], a[i + gap]);
|
||||||
|
isSwapped = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue