-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDoublyLinkedList.py
38 lines (35 loc) · 1.18 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
class Node:
def __init__(self, value):
self.value = value
self.Prev = None
self.Next = None
class DoubleLinkedList:
def __init__(self) -> None:
self.head = None
self.tail = None
def insert(self, value, location):
newNode = Node(value)
if self.head is None:
self.head = newNode
else:
if location == 0:
newNode.Prev = None
newNode.Next = self.head
self.head.Prev = newNode
self.head = newNode
elif location == 1:
newNode.next = None
self.tail.next = newNode
newNode.Prev = self.tail
self.tail = newNode
else:
tempNode = self.head
count = 0
# this gives us the node before the position we want to place our new node
while count < location - 1:
tempNode = tempNode.Next
count += 1
newNode.Next = tempNode.Next
tempNode.Next.Prev = newNode
tempNode.Next = newNode
newNode.Prev = tempNode