-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCountingInversion.java
More file actions
67 lines (56 loc) · 1.37 KB
/
CountingInversion.java
File metadata and controls
67 lines (56 loc) · 1.37 KB
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
package com.ub.test;
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
public class CountingInversion {
private int[] arr = new int[100000];
private int invCount;
public CountingInversion() {
readandPopulateArray();
computeInversion();
}
private void computeInversion() {
int len = arr.length;
int i,j;
for(i=0;i<len;i++) {
for(j=i+1;j<len;j++) {
if(arr[i] > arr[j]) {
invCount ++;
}
}
}
}
private void readandPopulateArray() {
try {
BufferedReader in
= new BufferedReader(new FileReader("IntegerArray.txt"));
String strLine;
//Read File Line By Line
try {
int i = 0;
while ((strLine = in.readLine()) != null) {
// Print the content on the console
arr[i] = Integer.parseInt(strLine);
i++;
}
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
//Close the input stream
try {
in.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
public int getInverionCount() {
return invCount;
}
}