forked from akshayuprabhu/DAA-paper-implementation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbitonic_withoutparallel.cpp
60 lines (51 loc) · 1.03 KB
/
bitonic_withoutparallel.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
#include<bits/stdc++.h>
#include <omp.h>
using namespace std;
void compAndSwap(int a[], int i, int j, int dir)
{
if (dir==(a[i]>a[j]))
swap(a[i],a[j]);
}
void bitonicMerge(int a[], int low, int cnt, int dir)
{
if (cnt>1)
{
int k = cnt/2;
for (int i=low; i<low+k; i++)
compAndSwap(a, i, i+k, dir);
bitonicMerge(a, low, k, dir);
bitonicMerge(a, low+k, k, dir);
}
}
void bitonicSort(int a[],int low, int cnt, int dir)
{
if (cnt>1)
{
int k = cnt/2;
// #pragma omp parallel
// {
bitonicSort(a, low, k, 1);
bitonicSort(a, low+k, k, 0);
bitonicMerge(a,low, cnt, dir);
// }
}
}
void sort(int a[], int N, int up)
{
bitonicSort(a,0, N, up);
}
int main()
{
int N;
cin >> N;
int a[N];
for(int i=0;i<N;i++){
cin >> a[i];
}
int up = 1;
sort(a, N, up);
printf("Sorted array: \n");
for (int i=0; i<N; i++)
printf("%d ", a[i]);
return 0;
}