-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlinkedList.py
More file actions
1130 lines (1013 loc) · 42.5 KB
/
linkedList.py
File metadata and controls
1130 lines (1013 loc) · 42.5 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
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
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
## Linked List DS Module ##
class LinkedList:
"""
- This class contain the 4 types of linked lists:
1. Singly linked list
2. Doubly linked list
3. Circular linked list
4. Circular Doubly linked list
- Each one has its own class and methods.
- Some methods seem to be similar such as clear or insert.
- len func refers to a variable to minimize the times of looping through this DS
"""
class Node:
""" This class is used for all our DS which produce a node with some global properties """
def __init__(self, value=None) -> None:
self.prev = None
self.value = value
self.next = None
class SinglyLL:
def __init__(self, head=None) -> None:
self.__head = head if not head else LinkedList.Node(head)
self.__tail = self.__head
self.__len = 0 if not self.__head else 1
def __setitem__(self, index: int, value: object):
""" change a node value based on its index """
if index in range(self.__len):
self[index].value = value
def __getitem__(self, index: int):
""" get a node value based on its index """
return self.getData(index)
def __delitem__(self, __o: object):
""" remove a specific item from this DS """
return self.remove(__o)
def __contains__(self, __o: object) -> bool:
""" return True if __o exist in this DS otherwise False """
return True if type(self.getIndex(__o)) == int or self is __o else False
def __iter__(self):
self.index = 0
return self
def __next__(self):
if self.index < self.__len-1:
self.index += 1
return self[self.index-1]
raise StopIteration
def __add__(self, __o: object):
""" concatenate 2 data structures if they are from the same class """
if isinstance(__o, LinkedList.SinglyLL):
self.__tail.next = __o.__head
self.__tail = __o.__tail
self.__len += __o.__len
return self
raise TypeError("(+) operator could not wokrs between different classes types")
def __lt__(self, __o: object) -> bool:
""" compare the length of two object of the same class """
if isinstance(__o, LinkedList.SinglyLL):
return self.__len < __o.__len
raise TypeError("(<) operator could not wokrs between different classes types")
def __gt__(self, __o: object) -> bool:
""" compare the length of two object of the same class """
if isinstance(__o, LinkedList.SinglyLL):
return self.__len > __o.__len
raise TypeError("(>) operator could not wokrs between different classes types")
def __le__(self, __o: object) -> bool:
""" compare the length of two object of the same class """
if isinstance(__o, LinkedList.SinglyLL):
return self.__len <= __o.__len
raise TypeError("(<=) operator could not wokrs between different classes types")
def __ge__(self, __o: object) -> bool:
""" compare the length of two object of the same class """
if isinstance(__o, LinkedList.SinglyLL):
return self.__len >= __o.__len
raise TypeError("(>=) operator could not wokrs between different classes types")
def __len__(self) -> int:
return self.__len
def __repr__(self) -> str:
return f"Linked List[type: Singly]({str(self.toList())})"
def __str__(self) -> str:
return f"({self.toList()})"
def isEmpty(self) -> bool:
return self.__len == 0
def getIndex(self, data):
f""" raise ValueError if the {self.__class__.__name__} is empty """
if self.isEmpty():
raise ValueError(f"Empty {self.__class__.__name__}")
elif data == self.__tail.value:
return self.__len - 1
curr_item = self.__head
index = 0
while curr_item.value != data:
if curr_item.next is None:
return None
curr_item = curr_item.next
index += 1
if curr_item.value == data:
return index
def getData(self, index=int):
f""" 1/ index must be an int & in the range of len({self.__class__.__name__}) otherwise it will raise an error.
2/ to print the value if the node use .value """
if not isinstance(index, int):
raise TypeError("index must be an integer")
if index >= self.__len or index < 0:
raise IndexError(f"index range must be from 0 to len({self.__class__.__name__})")
curr_item = self.__head
count = 0
while count != index:
curr_item = curr_item.next
count += 1
if count == index:
return curr_item
def count(self, data):
f""" counting the number of the same item in this {self.__class__.__name__} """
if self.isEmpty():
raise ValueError(f"empty {self.__class__.__name__}")
if not self.getIndex(data):
raise ValueError(f"{data} does not exist")
curr_item = self.__head
times = 0
while curr_item != self.__tail:
if curr_item.value == data:
times += 1
curr_item = curr_item.next
if self.__tail.value == data:
times += 1
return times
def fromItr(self, itr):
f""" make a {self.__class__.__name__} from any iterable in python including dict & str """
if len(itr) == 0:
return
for item in itr:
self.append(item)
return
def toList(self) -> list:
f""" convert a {self.__class__.__name__} into a python list """
if self.isEmpty():
return []
elif self.__head.next is None:
return [self.__head.value]
curr_item = self.__head
result = []
while curr_item.next is not None:
result.append(curr_item.value)
curr_item = curr_item.next
result.append(curr_item.value)
return result
def append(self, data) -> None:
f""" insert a node at the end of the {self.__class__.__name__} """
node = LinkedList.Node(data)
if self.isEmpty():
self.__head = node
self.__tail = node
self.__len += 1
return
if self.__head.next is None:
self.__head.next = node
self.__tail = node
self.__len += 1
return
self.__tail.next = node
self.__tail = node
self.__len += 1
return
def insert(self, data, index=0) -> None:
f""" if the {self.__class__.__name__} is empty so this method will ignore the index arg """
node = LinkedList.Node(data)
if self.isEmpty():
self.__head = node
self.__tail = node
self.__len += 1
return
if index == 0:
if self.__tail is None:
self.__tail = self.__head
node.next = self.__head
self.__head = node
self.__len += 1
return
elif index >= self.__len:
self.__tail.next = node
self.__tail = node
self.__len += 1
return
curr_item = self.getData(index-1)
node.next = curr_item.next
curr_item.next = node
self.__tail = node
self.__len += 1
return
def pop(self):
f""" remove the last element of this {self.__class__.__name__} """
if self.isEmpty():
raise ValueError(f"empty {self.__class__.__name__}")
if self.__head.next is None:
del_item = self.__head.value
self.__head = None
self.__len -= 1
return del_item
del_item = self.__tail.value
curr_item = self.__head
while curr_item.next != self.__tail:
curr_item = curr_item.next
curr_item.next = None
self.__tail = curr_item
self.__len -= 1
return del_item
def remove(self, value):
f""" raise ValueError if the {self.__class__.__name__} is empty or if the value does not exist """
if self.isEmpty():
raise ValueError(f"Empty {self.__class__.__name__}")
elif self.__head.next is None and self.__head.value != value:
raise ValueError(f"{value} does not exist")
elif self.__head.value == value:
self.__head = self.__head.next
self.__len -= 1
return
curr_item = self.__head
next_item = self.__head.next
while next_item.value != value:
if next_item.next is None:
raise ValueError(f"{value} does not exist")
curr_item = next_item
next_item = next_item.next
if next_item.next is None:
curr_item.next = None
self.__tail = curr_item
self.__len -= 1
return
curr_item.next = next_item.next
self.__len -= 1
return
def clear(self):
f""" remove all this {self.__class__.__name__} elements """
self.__head = None
self.__tail = None
self.__len = 0
def display(self):
f""" showing this {self.__class__.__name__} in a nice & readable way """
if self.isEmpty():
return
elif self.__head.next is None:
print(self.__head.value)
return
curr_item = self.__head
result = ""
while curr_item.next is not None:
result += str(curr_item.value) + " --> "
curr_item = curr_item.next
result += str(curr_item.value)
print(result)
return
class DoublyLL:
def __init__(self, head=None) -> None:
self.__head = head
self.__tail = None
self.__len = 0
def __setitem__(self, index: int, value: object):
""" change a node value based on its index """
if index in range(self.__len):
self[index].value = value
def __getitem__(self, index: int):
""" get a node value based on its index """
return self.getData(index)
def __delitem__(self, __o: object):
""" remove a specific item from this DS """
return self.remove(__o)
def __contains__(self, __o: object) -> bool:
""" return True if __o exist in this DS otherwise False """
return True if type(self.getIndex(__o)) == int or self is __o else False
def __iter__(self):
self.index = 0
return self
def __next__(self):
if self.index < self.__len-1:
self.index += 1
return self[self.index-1]
raise StopIteration
def __add__(self, __o: object):
""" concatenate 2 data structures if they are from the same class """
if isinstance(__o, LinkedList.DoublyLL):
self.__tail.next = __o.__head
__o.__head.prev = self.__tail
self.__tail = __o.__tail
self.__len += __o.__len
return self
raise TypeError("(+) operator could not wokrs between different classes types")
def __lt__(self, __o: object) -> bool:
""" compare the length of two object of the same class """
if isinstance(__o, LinkedList.DoublyLL):
return self.__len < __o.__len
raise TypeError("(<) operator could not wokrs between different classes types")
def __gt__(self, __o: object) -> bool:
""" compare the length of two object of the same class """
if isinstance(__o, LinkedList.DoublyLL):
return self.__len > __o.__len
raise TypeError("(>) operator could not wokrs between different classes types")
def __le__(self, __o: object) -> bool:
""" compare the length of two object of the same class """
if isinstance(__o, LinkedList.DoublyLL):
return self.__len <= __o.__len
raise TypeError("(<=) operator could not wokrs between different classes types")
def __ge__(self, __o: object) -> bool:
""" compare the length of two object of the same class """
if isinstance(__o, LinkedList.DoublyLL):
return self.__len >= __o.__len
raise TypeError("(>=) operator could not wokrs between different classes types")
def __len__(self) -> int:
return self.__len
def __repr__(self) -> str:
return f"Linked List[type: Doubly]({self.toList()})"
def __str__(self) -> str:
return f"({self.toList()})"
def isEmpty(self):
return self.__len == 0
def getIndex(self, data):
f""" raise ValueError if the {self.__class__.__name__} is empty """
if self.isEmpty():
raise ValueError(f"Empty {self.__class__.__name__}")
if data == self.__tail.value:
return self.__len - 1
curr_item = self.__head
index = 0
while curr_item.value != data:
if curr_item.next is None:
return None
curr_item = curr_item.next
index += 1
if curr_item.value == data:
return index
def getData(self, index=int):
f""" index must be an int & in the range of len({self.__class__.__name__}) otherwise it will raise an error.
2/ to print the value if the node use .value """
if not isinstance(index, int):
raise TypeError("index must be an integer")
elif index >= self.__len or index < -self.__len:
raise IndexError(f"{self.__class__.__name__} index out of range")
elif index in range(-1, -self.__len-1, -1):
curr_item = self.__tail
count = -1
while index != count:
curr_item = curr_item.prev
count -= 1
return curr_item
curr_item = self.__head
count = 0
while count != index:
curr_item = curr_item.next
count += 1
if count == index:
return curr_item
def count(self, data):
f""" counting the number of the same item in this {self.__class__.__name__} """
if self.isEmpty():
raise ValueError(f"empty {self.__class__.__name__}")
if not self.getIndex(data):
raise ValueError(f"{data} does not exist")
curr_item = self.__head
times = 0
while curr_item != self.__tail:
if curr_item.value == data:
times += 1
curr_item = curr_item.next
if self.__tail.value == data:
times += 1
return times
def fromItr(self, itr):
f""" make a {self.__class__.__name__} from any iterable in python including dict & str """
if len(itr) == 0:
return
for item in itr:
self.append(item)
return
def toList(self) -> list:
f""" convert a {self.__class__.__name__} into a python list """
if self.isEmpty():
return []
elif self.__head.next is None:
return [self.__head.value]
curr_item = self.__head
result = []
while curr_item.next is not None:
result.append(curr_item.value)
curr_item = curr_item.next
result.append(curr_item.value)
return result
def append(self, data) -> None:
f""" insert a node at the end of the {self.__class__.__name__} """
node = LinkedList.Node(data)
if self.isEmpty():
self.__head = node
self.__len += 1
return
if self.__head.next is None:
node.prev = self.__head
self.__head.next = node
self.__tail = node
self.__len += 1
return
self.__tail.next = node
node.prev = self.__tail
self.__tail = node
self.__len += 1
return
def appendFirst(self, data) -> None:
f""" insert a node at the 0 index of the {self.__class__.__name__} """
node = LinkedList.Node(data)
if self.isEmpty():
self.__head = node
self.__len += 1
return
if self.__head.next is None:
self.__head.prev = node
node.next = self.__head
self.__tail = self.__head
self.__head = node
self.__len += 1
return
self.__head.prev = node
node.next = self.__head
self.__head = node
self.__len += 1
return
def insert(self, data, index=0) -> None:
f""" if the {self.__class__.__name__} is empty so this method will ignore the index arg """
node = LinkedList.Node(data)
if self.isEmpty():
self.__head = node
self.__len += 1
return
if index == 0:
if self.__tail is None:
self.__head.next = node
self.__tail = self.__head
self.__tail.next = None
self.__head.prev = node
node.next = self.__head
self.__head = node
self.__len += 1
return
elif index >= self.__len:
self.__tail.next = node
node.prev = self.__tail
self.__tail = node
self.__len += 1
return
curr_item = self.getData(index)
node.prev = curr_item.prev
node.next = curr_item
curr_item.prev.next = node
curr_item.prev = node
self.__len += 1
return
def pop(self):
f""" remove the last element of the {self.__class__.__name__} """
if self.isEmpty():
raise ValueError(f"empty {self.__class__.__name__}")
if self.__head.next is None:
del_item = self.__head
self.__head = None
self.__len -= 1
return del_item
del_item = self.__tail.value
self.__tail.prev.next = None
self.__tail = self.__tail.prev
self.__len -= 1
return del_item
def remove(self, value):
f""" raise ValueError if the {self.__class__.__name__} is empty or if the value does not exist """
if self.isEmpty():
raise ValueError(f"Empty {self.__class__.__name__}")
elif self.__head.next is None and self.__head.value != value:
raise ValueError(f"{value} does not exist")
elif self.__head.value == value:
self.__head = self.__head.next
self.__len -= 1
return
curr_item = self.__head
while curr_item.value != value:
if curr_item.next is None:
raise ValueError(f"{value} does not exist")
curr_item = curr_item.next
if curr_item.value == value:
if curr_item.next is None:
curr_item.prev.next = None
self.__tail = curr_item.prev
self.__len -= 1
return
curr_item.prev.next = curr_item.next
curr_item.next.prev = curr_item.prev
self.__len -= 1
return
def clear(self):
f""" remove all this {self.__class__.__name__} elements """
self.__head = None
self.__tail = None
self.__len = 0
def display(self):
f""" showing this {self.__class__.__name__} in a nice & readable way """
if self.isEmpty():
return
if self.__head.next is None:
print(self.__head.value)
return
curr_item = self.__head
result = ""
while curr_item.next is not None:
result += str(curr_item.value) + " <--> "
curr_item = curr_item.next
result += str(curr_item.value)
print(result)
return
class CircularLL:
def __init__(self, head=None) -> None:
self.__head = head
self.__tail = None
self.__len = 0
def __setitem__(self, index: int, value: object):
""" change a node value based on its index """
if index in range(self.__len):
self[index].value = value
def __getitem__(self, index: int):
""" get a node value based on its index """
return self.getData(index)
def __delitem__(self, __o: object):
""" remove a specific item from this DS """
return self.remove(__o)
def __contains__(self, __o: object) -> bool:
""" return True if __o exist in this DS otherwise False """
return True if type(self.getIndex(__o)) == int or self is __o else False
def __iter__(self):
self.index = 0
return self
def __next__(self):
if self.index < self.__len-1:
self.index += 1
return self[self.index-1]
raise StopIteration
def __add__(self, __o: object):
""" concatenate 2 data structures if they are from the same class """
if isinstance(__o, LinkedList.CircularLL):
self.__tail.next = __o.__head
self.__len += __o.__len
return self
raise TypeError("(+) operator could not wokrs between different classes types")
def __lt__(self, __o: object) -> bool:
""" compare the length of two object of the same class """
if isinstance(__o, LinkedList.CircularLL):
return self.__len < __o.__len
raise TypeError("(<) operator could not wokrs between different classes types")
def __gt__(self, __o: object) -> bool:
""" compare the length of two object of the same class """
if isinstance(__o, LinkedList.CircularLL):
return self.__len > __o.__len
raise TypeError("(>) operator could not wokrs between different classes types")
def __le__(self, __o: object) -> bool:
""" compare the length of two object of the same class """
if isinstance(__o, LinkedList.CircularLL):
return self.__len <= __o.__len
raise TypeError("(<=) operator could not wokrs between different classes types")
def __ge__(self, __o: object) -> bool:
""" compare the length of two object of the same class """
if isinstance(__o, LinkedList.CircularLL):
return self.__len >= __o.__len
raise TypeError("(>=) operator could not wokrs between different classes types")
def __len__(self) -> int:
return self.__len
def __repr__(self) -> str:
return f"Linked List[type: Circular]({self.toList()})"
def __str__(self) -> str:
return f"({self.toList()})"
def isEmpty(self):
return self.__len == 0
def getIndex(self, data):
f""" raise ValueError if the {self.__class__.__name__} is empty """
if self.isEmpty():
raise ValueError(f"Empty {self.__class__.__name__}")
if data == self.__tail.value:
return self.__len - 1
curr_item = self.__head
index = 0
while curr_item.value != data:
if curr_item.next == self.__head:
return None
curr_item = curr_item.next
index += 1
if curr_item.value == data:
return index
def getData(self, index=int):
f""" 1/ index must be an int & in the range of len({self.__class__.__name__}) otherwise it will raise an error.
2/ to print the value if the node use .value """
if not isinstance(index, int):
raise TypeError("index must be an integer")
if index >= self.__len or index < 0:
raise IndexError(f"index range must be from 0 to len({self.__class__.__name__})")
curr_item = self.__head
count = 0
while count != index:
curr_item = curr_item.next
count += 1
if count == index:
return curr_item
def count(self, data) -> int:
f""" counting the number of the same item in this {self.__class__.__name__} """
if self.isEmpty():
raise ValueError(f"empty {self.__class__.__name__}")
curr_item = self.__head
times = 0
while curr_item != self.__tail:
if curr_item.value == data:
times += 1
curr_item = curr_item.next
if self.__tail.value == data:
times += 1
return times
def fromItr(self, itr):
f""" make a {self.__class__.__name__} from any iterable in python including dict & str """
if len(itr) == 0:
return
for item in itr:
self.append(item)
return
def toList(self) -> list:
f""" convert a {self.__class__.__name__} into a python list """
if self.isEmpty():
return []
elif self.__head.next is None:
return [self.__head.value]
curr_item = self.__head
result = []
while curr_item.next != self.__head:
result.append(curr_item.value)
curr_item = curr_item.next
result.append(curr_item.value)
return result
def append(self, data) -> None:
f""" insert a node at the end of the {self.__class__.__name__} """
node = LinkedList.Node(data)
if self.isEmpty():
self.__head = node
self.__len += 1
return
if self.__head.next is None:
node.next = self.__head
self.__head.next = node
self.__tail = node
self.__len += 1
return
self.__tail.next = node
node.next = self.__head
self.__tail = node
self.__len += 1
return
def insert(self, data, index=0) -> None:
f""" if the {self.__class__.__name__} is empty so this method will ignore the index arg """
node = LinkedList.Node(data)
if self.isEmpty():
self.__head = node
self.__len += 1
return
if index == 0:
if self.__tail is None:
self.__tail = self.__head
node.next = self.__head
self.__tail.next = node
self.__head = node
self.__len += 1
return
elif index >= self.__len:
self.__tail.next = node
node.next = self.__head
self.__tail = node
self.__len += 1
return
curr_item = self.getData(index-1)
node.next = curr_item.next
curr_item.next = node
self.__len += 1
return
def pop(self):
f""" remove the last element of this {self.__class__.__name__} """
if self.isEmpty():
raise ValueError(f"empty {self.__class__.__name__}")
if self.__head.next is None:
del_item = self.__head.value
self.__head = None
self.__len -= 1
return del_item
del_item = self.__tail.value
curr_item = self.__head
while curr_item.next != self.__tail:
curr_item = curr_item.next
self.__tail = curr_item
curr_item.next = self.__head
self.__len -= 1
return del_item
def remove(self, value):
f""" raise ValueError if the {self.__class__.__name__} is empty or if the value does not exist """
if self.isEmpty():
raise ValueError(f"Empty {self.__class__.__name__}")
elif self.__head.next is None and self.__head.value != value:
raise ValueError(f"{value} does not exist")
elif self.__head.value == value:
self.__head = self.__head.next
self.__tail.next = self.__head
self.__len -= 1
return
curr_item = self.__head
next_item = self.__head.next
while next_item.value != value:
if next_item.next == self.__head:
raise ValueError(f"{value} does not exist")
curr_item = next_item
next_item = next_item.next
if next_item.next == self.__head:
curr_item.next = self.__head
self.__tail = curr_item
self.__len -= 1
return
curr_item.next = next_item.next
self.__len -= 1
return
def clear(self):
f""" remove all this {self.__class__.__name__} elements """
self.__head = None
self.__tail = None
self.__len = 0
def display(self):
f""" showing this {self.__class__.__name__} in a nice & readable way """
if self.isEmpty():
return
elif self.__head.next is None:
print(self.__head.value)
return
curr_item = self.__head
result = ""
while curr_item.next != self.__head:
result += str(curr_item.value) + " --> "
curr_item = curr_item.next
result += str(curr_item.value) + " --> [first_item]"
print(result)
return
class CircularDoublyLL:
def __init__(self, head=None) -> None:
self.__head = head
self.__tail = None
self.__len = 0
def __setitem__(self, index: int, value: object):
""" change a node value based on its index """
if index in range(self.__len):
self[index].value = value
def __getitem__(self, index: int):
""" get a node value based on its index """
return self.getData(index)
def __delitem__(self, __o: object):
""" remove a specific item from this DS """
return self.remove(__o)
def __contains__(self, __o: object) -> bool:
""" return True if __o exist in this DS otherwise False """
return True if type(self.getIndex(__o)) == int or self is __o else False
def __iter__(self):
self.index = 0
return self
def __next__(self):
if self.index < self.__len-1:
self.index += 1
return self[self.index-1]
raise StopIteration
def __add__(self, __o: object):
""" concatenate 2 data structures if they are from the same class """
if isinstance(__o, LinkedList.CircularDoublyLL):
self.__tail.next = __o.__head
__o.__head.prev = self.__tail
self.__head.prev = __o.__tail
__o.__tail.next = self.__head
self.__tail = __o.__tail
self.__len += __o.__len
return self
raise TypeError("(+) operator could not wokrs between different classes types")
def __lt__(self, __o: object) -> bool:
""" compare the length of two object of the same class """
if isinstance(__o, LinkedList.CircularDoublyLL):
return self.__len < __o.__len
raise TypeError("(<) operator could not wokrs between different classes types")
def __gt__(self, __o: object) -> bool:
""" compare the length of two object of the same class """
if isinstance(__o, LinkedList.CircularDoublyLL):
return self.__len > __o.__len
raise TypeError("(>) operator could not wokrs between different classes types")
def __le__(self, __o: object) -> bool:
""" compare the length of two object of the same class """
if isinstance(__o, LinkedList.CircularDoublyLL):
return self.__len <= __o.__len
raise TypeError("(<=) operator could not wokrs between different classes types")
def __ge__(self, __o: object) -> bool:
""" compare the length of two object of the same class """
if isinstance(__o, LinkedList.CircularDoublyLL):
return self.__len >= __o.__len
raise TypeError("(>=) operator could not wokrs between different classes types")
def __len__(self) -> int:
return self.__len
def __repr__(self) -> str:
return f"Linked List[type: Circular Doubly]({self.toList()})"
def __str__(self) -> str:
return f"({self.toList()})"
def isEmpty(self):
return self.__len == 0
def getIndex(self, data):
f""" raise ValueError if the {self.__class__.__name__} is empty """
if self.isEmpty():
raise ValueError(f"Empty {self.__class__.__name__}")
if data == self.__tail.value:
return self.__len - 1
curr_item = self.__head
index = 0
while curr_item.value != data:
if curr_item.next is None:
return None
curr_item = curr_item.next
index += 1
if curr_item.value == data:
return index
def getData(self, index=int):
f""" index must be an int & in the range of len({self.__class__.__name__}) otherwise it will raise an error.
2/ to print the value if the node use .value """
if not isinstance(index, int):
raise TypeError("index must be an integer")
elif index >= self.__len or index < -self.__len:
raise IndexError(f"{self.__class__.__name__} index out of range")
elif index in range(-1, -self.__len-1, -1):
curr_item = self.__tail
count = -1
while index != count:
curr_item = curr_item.prev
count -= 1
return curr_item
curr_item = self.__head
count = 0
while count != index:
curr_item = curr_item.next
count += 1
if count == index:
return curr_item
def count(self, data):
f""" counting the number of the same item in this {self.__class__.__name__} """
if self.isEmpty():
raise ValueError(f"empty {self.__class__.__name__}")
if not self.getIndex(data):
raise ValueError(f"{data} does not exist")
curr_item = self.__head
times = 0
while curr_item != self.__tail:
if curr_item.value == data:
times += 1
curr_item = curr_item.next
if self.__tail.value == data:
times += 1
return times
def fromItr(self, itr):
f""" make a {self.__class__.__name__} from any iterable in python including dict & str """
if len(itr) == 0:
return
for item in itr:
self.append(item)
return
def toList(self) -> list:
f""" convert a {self.__class__.__name__} into a python list """
if self.isEmpty():
return []
elif self.__head.next is None:
return [self.__head.value]
curr_item = self.__head
result = []
while curr_item.next != self.__head:
result.append(curr_item.value)
curr_item = curr_item.next
result.append(curr_item.value)
return result
def append(self, data) -> None:
f""" insert a node at the end of the {self.__class__.__name__} """
node = LinkedList.Node(data)
if self.isEmpty():
self.__head = node
self.__len += 1
return
if self.__head.next is None:
node.prev = self.__head
node.next = self.__head
self.__head.next = node
self.__head.prev = node
self.__tail = node
self.__len += 1
return