-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDoublyLinkedList.py
130 lines (113 loc) · 3.26 KB
/
DoublyLinkedList.py
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
class Node:
def __init__(self, elem):
self.element = elem
self.next = None
self.prev = None
class DoublyList:
def __init__(self, a):
self.head = Node(a[0])
tail = self.head
if type(a) == list:
for i in range(1, len(a)):
newNode = Node(a[i])
newNode.prev = tail
tail.next = newNode
tail = newNode
else:
pass
# Counts the number of Nodes in the list
def countNode(self):
temp = self.head
count = 0
while temp != None:
count += 1
temp = temp.next
return count
# prints the elements in the list
def forwardprint(self):
temp = self.head
while temp != None:
print(temp.element, end = ", " if (temp.next != None) else "\n" )
temp = temp.next
# prints the elements in the list backward
def backwardprint(self):
temp = self.head
while temp.next != None:
temp = temp.next
while temp != None:
print(temp.element, end = ", " if (temp.prev != None) else "\n" )
temp = temp.prev
# returns the reference of the at the given index. For invalid index return None.
def nodeAt(self, idx):
if (idx < 0 or idx >= self.countNode()):
return None
else:
temp = self.head
i = 0
while temp != None:
if (i == idx):
return temp
i += 1
temp = temp.next
# returns the index of the containing the given element. if the element does not exist in the List, return -1.
def indexOf(self, elem):
temp = self.head
count = 0
while temp != None:
if temp.element == elem:
return count
else:
count += 1
temp = temp.next
# inserts containing the given element at the given index Check validity of index.
def insert(self, elem, idx):
if idx < 0 or idx > self.countNode():
print("Invalid Index")
elif idx == 0:
newNode= Node(elem, None, None)
newNode.next = self.head
self.head.prev = newNode
self.head = newNode
return
elif idx == self.countNode():
newNode = Node(elem)
predNode = self.nodeAt(idx-1)
newNode.prev = predNode
predNode.next = newNode
else:
newNode = Node(elem)
predNode = self.nodeAt(idx-1)
nextNode = predNode.next
newNode.next = predNode.next
newNode.prev = predNode
predNode.next.prev = newNode
predNode.next = newNode
return
# removes at the given index. returns element of the removed node. Check validity of index. return None if index is invalid.
def remove(self, idx):
if idx == 0:
rn = self.head
nextNode = self.head.next
self.head = nextNode
nextNode.prev = None
return str(rn.element)
elif idx == self.countNode()-1:
removeNode = self.nodeAt(idx)
re = removeNode.element
prev = removeNode.prev
prev.next = None
return str(re)
else:
removeNode = self.nodeAt(idx)
re = removeNode.element
prev = removeNode.prev
nextNode = removeNode.next
prev.next = nextNode
nextNode.prev = prev
removeNode.element = removeNode.prev = removeNode.next = None
return str(re)
arr = [1, 4, 2]
newlist = DoublyList(arr)
newlist.insert(20,1)
newlist.remove(1)
newlist.forwardprint()