-
Notifications
You must be signed in to change notification settings - Fork 1
/
LinkedList.java
347 lines (299 loc) · 10.7 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
/*
* Kevin Borling
* CSCD 429
* LinkedList and Node class to load data and test set into.
*
*/
import java.util.ArrayList;
import java.util.Set;
import java.util.HashSet;
public class LinkedList
{
private Node head;
private int size;
//--------------------------Node--------------------------//
public class Node
{
protected String data;
protected String geneID;
protected String essential;
protected String classify;
protected String complex;
protected String phenotype;
protected String motif;
protected String chromosome;
protected String function;
protected String localization;
protected float weight;
protected Node next;
protected Node(String geneID, String essential, String classify, String complex, String phenotype, String motif, String chromosome, String function, String localization, Node next)
{
this.geneID = geneID;
this.essential = essential;
this.classify = classify;
this.complex = complex;
this.phenotype = phenotype;
this.motif = motif;
this.chromosome = chromosome;
this.function = function;
this.localization = localization;
this.weight = 0.0f;
this.next = next;
}// End EVC
protected Node(String geneID, String essential, String classify, String complex, String phenotype, String motif, String chromosome, String function, String localization)
{
this(geneID, essential, classify, complex, phenotype, motif, chromosome, function, localization, null);
}// End DVC
public void setNext(Node next)
{
this.next = next;
}// End setNext
public Node getNext()
{
return this.next;
}// End getNext
public String getGeneID()
{
return this.geneID;
}// End getGeneID
public String getEssential()
{
return this.essential;
}// End getEssential
public String getClassify()
{
return this.classify;
}// End getClassify
public String getComplex()
{
return this.complex;
}// End getComplex
public String getPhenotype()
{
return this.phenotype;
}// End getPhenotype
public String getMotif()
{
return this.motif;
}// End getMotif
public String getChromosome()
{
return this.chromosome;
}// End getChromosome
public String getFunction()
{
return this.function;
}// End getFunction
public String getLocalization()
{
return this.localization;
}// End getLocalization
public void setGeneID(String geneID)
{
this.geneID = geneID;
}// End setGeneID
public void setEssential(String essential)
{
this.essential = essential;
}// End setEssential
public void setClassify(String classify)
{
this.classify = classify;
}// End setClassify
public void setComplex(String complex)
{
this.complex = complex;
}// End setComplex
public void setPhenotype(String phenotype)
{
this.phenotype = phenotype;
}// End setPhenotype
public void setMotif(String motif)
{
this.motif = motif;
}// End setMotif
public void setChromosome(String chromosome)
{
this.chromosome = chromosome;
}// End setChromosome
public void setFunction(String function)
{
this.function = function;
}// End setFunction
public void setLocalization(String localization)
{
this.localization = localization;
}// End setLocalization
}// End Class
//--------------------------LinkedList-----------------------//
public LinkedList()
{
this.head = null;
this.size = 0;
}//End DVC
public LinkedList(int size)
{
this.size = size;
}// End EVC
public Node getHead()
{
return this.head;
}
public boolean headless()
{
return this.head == null;
}// End isEmpty
public void addHead(String geneID, String essential, String classify, String complex, String phenotype, String motif, String chromosome, String function, String localization)
{
Node myNode = new Node(geneID, essential, classify, complex, phenotype, motif, chromosome, function, localization);
myNode.next = this.head;
this.head = myNode;
this.size++;
}//end addFirst method
public void add (String geneID, String essential, String classify, String complex, String phenotype, String motif, String chromosome, String function, String localization)
{
if (headless())// Checks if head is null or empty
addHead(geneID, essential, classify, complex, phenotype, motif, chromosome, function, localization);
else
{
Node temp = new Node(geneID, essential, classify, complex, phenotype, motif, chromosome, function, localization);
Node current = head;
// Start at head node, move to the end of the list
while(current.getNext() != null)
{
current = current.getNext();
}
// Sets last node's "next" reference to the new node
current.setNext(temp);
size++;
}
}// End add
public void sort()
{
Node first, smallest, curr;
String temp;
for (first = this.head; first.next != null; first = first.next)
{
smallest = first;
for (curr = first.next; curr != null; curr = curr.next)
if (curr.geneID.compareTo(smallest.geneID) < 0)
smallest = curr;
temp = first.geneID;
first.geneID = smallest.geneID;
smallest.geneID = temp;
}
}//End sort
public void getEuclid(LinkedList data, LinkedList test)
{
Node dataHead = data.getHead();
Node testHead = test.getHead();
String local = "", gene = "";
String one = "", two = "";
float lowestDistance = 999, distance = 0.0f;
int innercount = 0, outercount = 0;
for (Node curr = testHead; curr != null; curr = curr.next)
{
outercount ++;
one = oneLine(curr);
for (Node search = dataHead; search != null; search = search.next)
{
innercount++;
two = oneLine2(search);
distance = calcEuclid(one, two);
// Keep track of shortest Distance
if(distance < lowestDistance)
{
lowestDistance = distance;
local = search.localization;
gene = search.geneID;
}
}// End data set inner for
// Sets localization of best match.
curr.localization = local;
curr.weight = lowestDistance;
// Reset Values
distance = 0.0f;
lowestDistance = 999;
local = "";
gene = "";
}// End test set outer for
}// End calcEuclid
public float calcEuclid(final String testString, final String dataString)
{
// Parse File into tokens, splitting by commas or double quotations
String testData, dataData;
testData = testString.replace(".","");
dataData = dataString.replace(".","");
// Parse File into tokens, splitting by commas or double quotations
String [] tokens1 = testData.split(",(?=([^\"]*\"[^\"]*\")*[^\"]*$)");
String [] tokens2 = dataData.split(",(?=([^\"]*\"[^\"]*\")*[^\"]*$)");
final ArrayList<String> testTokens = new ArrayList<String>();
final ArrayList<String> dataTokens = new ArrayList<String>();
for(String token1 : tokens1)
{
testTokens.add(token1);
}
for(String token2 : tokens2)
{
dataTokens.add(token2);
}
final Set<String> tokenSet = new HashSet<String>();
tokenSet.addAll(testTokens);
tokenSet.addAll(dataTokens);
float distance = 0.0f;
for (final String token : tokenSet)
{
int testCount = 0;
int dataCount = 0;
for (final String sToken : testTokens)
{
if (sToken.equals(token) && !sToken.equals("?")) // Ignore Mising Values
testCount++;
}
for (final String sToken : dataTokens)
{
if (sToken.equals(token) && !sToken.equals("?"))
dataCount++;
}
distance += ((testCount - dataCount) * (testCount - dataCount));
}
return (float) Math.sqrt(distance);
}// End
public String oneLine(Node curr)
{
String result = "";
result += curr.geneID + "," + curr.essential + "," + curr.classify + "," + curr.complex + "," + curr.phenotype + "," + curr.motif + "," + curr.chromosome + "\n";
return result;
}// End oneLine
public String oneLine2(Node curr)
{
String result = "";
result += curr.geneID + "," + curr.essential + "," + curr.classify + "," + curr.complex + "," + curr.phenotype + "," + curr.motif + "," + curr.chromosome + "," + curr.function + "," + curr.localization + "\n";
return result;
}// End oneLine2
public void removeDuplicates()
{
Node prev = this.head;
Node curr = this.head.next;
while(curr != null)
{
if(curr.geneID.equals(prev.geneID))
{
prev.next = curr.next;
curr = curr.next;
}else
{
prev = curr;
curr = curr.next;
}
}// End while
}// End removeDuplicates
@Override
public String toString()
{
String result = "\n";
for (Node curr = this.head; curr != null; curr = curr.next)
result += curr.geneID + "," + curr.localization + "\n";
return result;
}//End toString
}// End Class