forked from iiitv/algos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BinSort.java
75 lines (70 loc) · 2.17 KB
/
BinSort.java
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
69
70
71
72
73
74
import java.util.Random;
class Node {
public double data;
public Node next;
public Node(double data) {
this.data = data;
next = null;
}
}
// Time Complexity O(n)-> avg case and O(n^2)-> Worst Case
// constraints:- 0<=A[i]<1
public class BinSort {
public static void binSort(Node[] b, double[] a) {
for (int i = 0; i < a.length; i++) {
int ins = (int) (a[i] * b.length);
if (b[ins] == null) {
b[ins] = new Node(a[i]);
} else {
boolean check = true;
Node temp = b[ins];
while (temp.next != null) {
if (a[i] > temp.next.data) {
temp = temp.next;
} else {
if (a[i] < temp.data)
break;
Node newNode = new Node(a[i]);
newNode.next = temp.next;
temp.next = newNode;
check = false;
break;
}
}
if (check) {
if (a[i] >= temp.data) {
Node newNode = new Node(a[i]);
temp.next = newNode;
} else {
double loc = temp.data;
temp.data = a[i];
Node newNode = new Node(loc);
newNode.next = temp.next;
temp.next = newNode;
}
}
}
}
int j = 0;
for (int i = 0; i < b.length; i++) {
while (b[i] != null) {
a[j++] = b[i].data;
b[i] = b[i].next;
}
}
}
public static void main(String[] args) {
Node[] b = new Node[10];
Random ran = new Random();
int n = 100;
double[] a = new double[n];
for (int i = 0; i < n; i++) {
a[i] = ran.nextDouble();
}
binSort(b, a);
for (int i = 0; i < n; i++) {
System.out.print(a[i] + " ");
}
System.out.println(" ");
}
}