-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinkedList.py
100 lines (78 loc) · 2.29 KB
/
linkedList.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
class Node:
data = None
next_node = None
def __init__(self, data):
self.data = data
def __repr__(self):
return "<Node data: %s>" %self.data
N1 = Node(23)
print(N1)
class LinkedList:
"""
Singly linked list
"""
#head = None
def __init__(self):
self.head = None
def is_empty(self):
return self.head == None
def size(self):
current = self.head
count = 0
while current:
count +=1
current = current.next_node
return count
def add(self, data):
new_node = Node(data)
new_node.next_node = self.head
self.head = new_node
def search(self, key):
current = self.head
while current:
if current.data == key:
return current
else:
current = current.next_node
return None
def insert(self, data, index):
if index == 0:
self.add(data)
if index > 0:
new = Node(data)
position = index
current = self.head
while position > 1:
current = Node.next_node
position -= 1
prev_node = current
next_noode = current.next_node
prev_node.next_node = new
new.next_node = next_noode
def remove(self, key):
current = self.head
previous = 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
previous.next_node = current.next_node
else:
previous = current
current = current.next_node
return current
def __repr__(self):
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)