-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathCompanyJavaB.java
421 lines (417 loc) · 11.1 KB
/
CompanyJavaB.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
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
//*******************************************************
// Company.java
// the class represent a Company using linked list
// Author: liron mizrahi
//*******************************************************
public class Company
{
private RentNode _rent;
/**
* constuctor of the class Company
* @parm None
* @return None
*/
public Company()
{
// initialise instance variables
_rent = null;
}// end of method Company
/**
* method add a rent to the linked list
* @parm String name, Car car, Date pickDate, Date returnDate
* @return boolean
*/
public boolean addRent(String name, Car car, Date pickDate, Date returnDate)
{
Rent rent = new Rent(name, car, pickDate, returnDate);
RentNode rentNode = new RentNode(rent);
RentNode head = new RentNode(_rent);
if(head == null)
{
head = rentNode;
}
while(head != null)
{
if(head.getRent().equals(rent))
{
return false;
}
if(head.getNext() == null)
{
head.setNext(rentNode);
return true;
}
if(head.getNext().getRent().getPickDate().after(pickDate))
{
RentNode next = head.getNext();
rentNode.setNext(next);
head.setNext(rentNode);
return true;
}
if(head.getNext().getRent().equals(rent))
{
return false;
}
if(head.getNext().getRent().getPickDate().equals(pickDate))
{
if(head.getNext().getRent().howManyDays() < rent.howManyDays())
{
RentNode next = head.getNext();
rentNode.setNext(next);
head.setNext(rentNode);
return true;
}
}
head = head.getNext();
}
return true;
}// end of method addRent
/**
* method remove rent from the linked list
* @parm Date d
* @return boolean
*/
public boolean removeRent(Date d)
{
RentNode head = new RentNode(_rent);
if(head == null)
{
return false;
}
if(head.getRent().getReturnDate().equals(d))
{
head = null;
return true;
}
while(head.getNext() != null)
{
if(head.getNext().getRent().getReturnDate().equals(d))
{
head.setNext(head.getNext().getNext());
return true;
}
head = head.getNext();
}
return false;
}// end of method removeRent
/**
* method return the num of rents in the linked list
* @parm None
* @return int
*/
public int getNumOfRents()
{
int count = 0;
RentNode head = new RentNode(_rent);
while(head != null)
{
count++;
head = head.getNext();
}
return count;
}// end of method getNumOfRents
/**
* method return the total sum of prices
* @parm None
* @return int
*/
public int getSumOfPrices()
{
int sum = 0;
RentNode head = new RentNode(_rent);
while(head != null)
{
sum += head.getRent().getPrice();
head = head.getNext();
}
return sum;
}// end of method getSumOfPrices
/**
* method return the total sum of days
* @parm None
* @return int
*/
public int getSumOfDays()
{
int sum = 0;
RentNode head = new RentNode(_rent);
while(head != null)
{
sum += head.getRent().howManyDays();
head = head.getNext();
}
return sum;
}// end of method getSumOfDays
/**
* method return the length of the averageRent
* @parm None
* @return int
*/
public int averageRent()
{
int sumDays = getSumOfDays();
if(sumDays == 0)
{
return 0;
}
int sumPrices = getSumOfPrices();
return sumPrices / sumDays;
}// end of method averageRent
/**
* method return the latest return date
* @parm None
* @return Date
*/
private Date getLatestReturnDate()
{
RentNode head = new RentNode(_rent);
if(head == null)
{
return null;
}
Date latestDate = new Date (head.getRent().getReturnDate());
Date temp = null;
while(head != null)
{
temp = new Date (head.getRent().getReturnDate());
if(temp.after(latestDate))
{
latestDate = temp;
}
head = head.getNext();
}
return latestDate;
}// end of method getLatestReturnDate
/**
* method return the latest return date
* @parm None
* @return Car
*/
public Car lastCarRent()
{
Date latestReturnDate = getLatestReturnDate();
if(latestReturnDate == null)
{
return null;
}
RentNode head = new RentNode(_rent);
while(head != null)
{
if(head.getRent().getReturnDate().equals(latestReturnDate))
{
return head.getRent().getCar();
}
head = head.getNext();
}
return null;
}// end of method lastCarRent
/**
* method return the longest rent days
* @parm None
* @return int
*/
private int getLongestRent()
{
RentNode head = new RentNode(_rent);
if(head == null)
{
return 0;
}
int maxDays = head.getRent().howManyDays();
int temp = 0;
while(head != null)
{
temp = head.getRent().howManyDays();
if(temp > maxDays)
{
maxDays = temp;
}
head = head.getNext();
}
return maxDays;
}// end of method getLongestRent
/**
* method return the rent with the longest days
* @parm None
* @return Rent
*/
public Rent longestRent()
{
int maxDays = getLongestRent();
if(maxDays == 0)
{
return null;
}
RentNode head = new RentNode(_rent);
while(head != null)
{
if(head.getRent().howManyDays() == maxDays)
{
return head.getRent();
}
head = head.getNext();
}
return null;
}// end of method longestRent
/**
* method return the most common rate between the rents in the linked list
* @parm None
* @return char
*/
public char mostCommonRate()
{
RentNode head = _rent;
if(head == null)
{
return 'N';
}
int[] sumPopularity = new int[4];
for(int i = 0; i < sumPopularity.length; i++)
{
sumPopularity[i] = 0;
}
while(head != null)
{
char type = head.getRent().getCar().getType();
if(type == 'A'){
sumPopularity[0]++;
}
else if(type == 'B')
{
sumPopularity[1]++;
}
else if(type == 'C')
{
sumPopularity[2]++;
}
else if(type == 'D')
{
sumPopularity[3]++;
}
head = head.getNext();
}
int max = Math.max(sumPopularity[0], Math.max(sumPopularity[1],Math.max(sumPopularity[2],sumPopularity[3])));
for(int i = sumPopularity.length - 1; i >= 0; i++)
{
if(sumPopularity[i] == max)
{
if(i == 0)
{
return 'A';
}
if(i == 1)
{
return 'B';
}
if(i == 2)
{
return 'C';
}
if(i == 3)
{
return 'D';
}
}
}
return 'N';
}// end of method mostCommonRate
/**
* method return RentNode at given index
* @parm int index
* @return RentNode
*/
private RentNode get(int index)
{
if(index < 0 || index >= getNumOfRents())
{
throw new IndexOutOfBoundsException();
}
RentNode temp = new RentNode(_rent);
for(int i = 0; i < index; i++)
{
temp = temp.getNext();
}
return temp;
}// end of method get
/**
* method return true if all the rent in the other rent list is includes in the exists rent list otherwise she return false
* @parm RentNode other
* @return boolean
*/
public boolean includes(Company other)
{
if(getNumOfRents() > other.getNumOfRents())
{
return false;
}
RentNode temp = new RentNode(_rent);
for(int i = 0; i <= other.getNumOfRents() - getNumOfRents(); i++)
{
boolean included = true;
for(int j = 0; j < getNumOfRents(); j++)
{
if(!other.get(i+j).getRent().equals(temp.get(j).getRent()))
{
included = false;
break;
}
}
if(included)
{
return true;
}
}
return false;
}// end of method includs
/**
* method merge the rents list
* @parm Company other
* @return None
*/
public void merge(Company other)
{
if(!includes(other))
{
for(int i = 0; i < other.getNumOfRents(); i++)
{
addRent(other.get(i).getRent().getName(),other.get(i).getRent().getCar(), other.get(i).getRent().getPickDate(), other.get(i).getRent().getReturnDate());
}
}
}// end of method merge
/**
* method which ensures that there are no overlaps between rental records In the list represented in the Company class
* @parm Company other
* @return None
*/
public void unifyRents()
{
RentNode temp = new RentNode(_rent);
for(int i = 0; i < getNumOfRents(); i++)
{
for(int j = 0; j < getNumOfRents(); i++)
{
_rent.get(i).setRent(temp.get(i).getRent().overlap(temp.get(j).getRent()));
}
}
}// end of method unifyRents
/**
* method return the rents data as string
* @parm None
* @return String
*/
public String toString()
{
if(_rent == null)
{
return "The company has 0 rents.";
}
String s = "The company has " + getNumOfRents() + " rents. \n";
RentNode printRent = new RentNode(_rent);
while(printRent != null)
{
s += printRent.getRent().toString() + "\n";
printRent = printRent.getNext();
}
return s;
}// end of method toString
}// end of class Company