-
Notifications
You must be signed in to change notification settings - Fork 0
/
LinkedList.java
136 lines (114 loc) · 2.78 KB
/
LinkedList.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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
public class LinkedList {
private Node head = null;
private Node tail = null;
private int size = 0;
private String sortKey = "";
public void add(BiCycle data) {
Node node=new Node(data);
if(head==null) {
head=node;
tail=node;
}
else if(size==1) {
head.next=node;
tail=head.next;
}
else {
tail.next=node;
tail=tail.next;
}
size++;
}
public void printList() {
Node temp=head;
while(head!=null) {
System.out.println(head.data);
head = head.next;
}
head = temp;
}
public void sortByKey(String key) {
this.sortKey = key;
head = mergeSort(head);
}
//Merge Sort for Int values
Node sortedMerge(Node a, Node b)
{
Node result = null;
/* Base cases */
if (a == null)
return b;
if (b == null)
return a;
/* Pick either a or b, and recur */
if (a.getIntValue(sortKey) <= b.getIntValue(sortKey))
{
result = a;
result.next = sortedMerge(a.next, b);
}
else
{
result = b;
result.next = sortedMerge(a, b.next);
}
return result;
}
Node sortedStringMerge(Node a, Node b)
{
Node result = null;
/* Base cases */
if (a == null)
return b;
if (b == null)
return a;
/* Pick either a or b, and recur */
if (a.getStringValue(sortKey).compareTo(b.getStringValue(sortKey))<0)
{
result = a;
result.next = sortedStringMerge(a.next, b);
}
else
{
result = b;
result.next = sortedStringMerge(a, b.next);
}
return result;
}
private Node mergeSort(Node h) {
if (head == null || h.next == null)
return h;
Node middle = getMiddle(h);
Node nextofmiddle = middle.next;
// set the next of middle node to null
middle.next = null;
// Apply mergeSort on left list
Node left = mergeSort(h);
// Apply mergeSort on right list
Node right = mergeSort(nextofmiddle);
Node sortedlist = null;
// Merge the left and right lists
if (sortKey.equals("gear") || sortKey.equals("height") || sortKey.equals("wheelbase")) {
sortedlist = sortedMerge(left, right);
}else {
sortedlist = sortedStringMerge(left, right);
}
return sortedlist;
}
private Node getMiddle(Node h)
{
if (h == null)
return h;
Node fastptr = h.next;
Node slowptr = h;
while (fastptr != null)
{
fastptr = fastptr.next;
if(fastptr!=null)
{
slowptr = slowptr.next;
fastptr=fastptr.next;
}
}
return slowptr;
}
}