-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathqueueLinkedList.py
82 lines (64 loc) · 2.16 KB
/
queueLinkedList.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
# Queue implementation using Linked List
# Simply adding a new node to linked list as a next node
# when we are adding a new element to the queue
# And for dequeue we remove first node from linked list
# All TC and SC is O(1) - constant
class Node:
def __init__(self, value=None):
self.value = value
self.next = None
def __str__(self):
return str(self.value)
class LinkedList:
def __init__(self):
self.head = None
self.tail = None
def __iter__(self):
current_node = self.head
while current_node:
yield current_node
current_node = current_node.next
class Queue:
def __init__(self):
self.linked_list = LinkedList()
def __str__(self):
values = [str(l) for l in self.linked_list]
return ' '.join(values)
def enqueue(self, value):
new_node = Node(value)
# if its first node
if self.linked_list.head == None:
self.linked_list.head = new_node
self.linked_list.tail = new_node
else:
self.linked_list.tail.next = new_node
self.linked_list.tail = new_node
def isEmpty(self):
# if head is empty it means the linked list is empty
if self.linked_list.head == None:
return True
else:
return False
def dequeue(self):
if self.isEmpty():
return "Queue is empty"
else:
temp_node = self.linked_list.head
# if there is only 1 node
if self.linked_list.head == self.linked_list.tail:
self.linked_list.head = None
self.linked_list.tail = None
else:
# assign head to the second node
self.linked_list.head = self.linked_list.head.next
return temp_node
def peek(self):
if self.isEmpty():
return "Queue is empty"
else:
return self.linked_list.head
def delete(self):
# garbage collector removes all nodes
# once the head and tail links are removed
self.linked_list.head = None
self.linked_list.tail = None