-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcountinversion.cpp
68 lines (59 loc) · 1.41 KB
/
countinversion.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
#include<iostream>
using namespace std;
int merge(int arr[], int l, int mid, int r)
{
int inv = 0;
int n1 = mid - l + 1;
int n2 = r - mid;
int a[n1];
int b[n2];
for(int i=0; i<n1; i++) // temp array a
a[i] = arr[l+i];
for(int i=0; i<n2; i++) // temp array b
b[i] = arr[mid+1+i];
int i=0, j=0, k=l;
while(i < n1 && j < n2) // comaparing both arrays, if i or j reaches the last element, while terminates
{
if(a[i] <= b[j])
{
arr[k] = a[i];
i++;
}
else // a[i], a[i+1], a[i+2] .... > b[j] and i<j
{
arr[k] = b[j];
j++;
inv += n1 - i;
}
k++;
}
while(i < n1) // if while terminates due to j==n2, this assignes the rest of elements in a array
{
arr[k] = a[i];
i++; k++;
}
while(j < n2) // if while terminates due to i==n1, this assignes the rest of elements in a array
{
arr[k] = b[j];
j++; k++;
}
return inv;
}
int mergeSort(int arr[], int l, int r)
{
int inv = 0;
if(l < r)
{
int mid = (l + r) / 2;
inv += mergeSort(arr, l, mid);
inv += mergeSort(arr, mid+1, r);
inv += merge(arr, l, mid, r);
}
return inv;
}
int main()
{
int arr[] ={3,5,6,9,1,2,7,8};
cout << mergeSort(arr,0,7);
return 0;
}