-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLinked_List.py
120 lines (98 loc) · 2.96 KB
/
Linked_List.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
class Node:
"""
An object for storing a single node of a linked list.
Models two attributes - data and the link to the next node in the list.
"""
data = None
next_Node = None
def __init__(self, data):
self.data = data
def __repr__(self):
return "<Node data : %s>" % self.data
class Linked_List:
"""Singly LInked List"""
def __init__(self):
self.head = None
def __repr__(self):
"""
Return a string representation of the list.
Takes O(n) time.
"""
nodes = []
current = self.head
while current:
if current is self.head:
nodes.append("[Head: %s]" % current.data)
elif current.next_Node is None:
nodes.append("[Tail: %s]" % current.data)
else:
nodes.append("[%s]" % current.data)
current = current.next_Node
return '-> '.join(nodes)
def is_empty(self):
return self.head == None
def size(self):
"""
Returns the number of nodes in the list.
Takes O(n) time
"""
current = self.head
count = 0
while current:
count = count + 1
current = current.next_Node
return count
def add(self, data):
"""
Add a new node with data at head of the list
Takes O(1) time
"""
new_node = Node(data)
new_node.next_Node = self.head
self.head = new_node
def search(self, key):
"""
Search for the first node containing data that matches the key
:param key:
:return: Node or 'None' if not found
"""
current = self.head
while current:
if current.data == key:
return current
else:
current = current.next_Node
return None
def insert(self, data, index):
"""
Inserts a new node containing data at index position
Takes O(1) time to insert and O(n) to point - overall O(n) time
"""
if index == 0:
self.add(data)
if index > 0:
new = Node(data)
position = index
current = self.head
while position > 1:
current = current.next_Node
position -= 1
prev_node = current
next_node = current.next_Node
prev_node.next_Node = new
new.next_Node = next_node
def remove(self, key):
"""
Removes node containing the data that matches the key
Returns the node or None if key not found
Take O(n) time
"""
current = self.head
prev = None
found = False
while current and not found:
if current.data == key and current is self.head:
found = True
self.head = current.next_Node
elif current.data == key:
found = True