A linked list is a linear data structure, in which the elements are not stored at contiguous memory locations. The elements in a linked list are linked using pointers as shown in the below image:
class Element(object):
def __init__(self, value):
self.value = value
self.next = None
class LinkedList(object):
def __init__(self, head=None):
self.head = head
'''Append the element'''
def append(self, new_element):
current = self.head
if self.head:
while current.next:
current = current.next
current.next = new_element
else:
self.head = new_element
'''get the element form a given position'''
def get_position(self, position):
current = self.head
count = 1
if self.head:
while count < position:
current = current.next
count += 1
return current
else:
return None
'''incert a new element at a given position'''
def insert(self, new_element, position):
current = self.head
count = 1
if position == 1:
new_element.next = current
self.head = new_element
else:
while count < position - 1:
current = current.next
count += 1
new_element.next = current.next
current.next = new_element
'''Delete the first node with a given value'''
def delete(self, value):
current = self.head
prev = None
while current and current.value != value:
prev = current
current = current.next
if current is not None:
if current == self.head:
self.head = self.head.next
else:
prev.next = current.next
# Test cases
# Set up some Elements
e1 = Element(101)
e2 = Element(203)
e3 = Element(304)
e4 = Element(494)
# Start setting up a LinkedList
ll = LinkedList(e1)
ll.append(e2)
ll.append(e3)
# Test get_position
# Should print 3
print(ll.head.next.next.value)
494
# Should also print 3
print(ll.get_position(4).value)
304
# Test insert
ll.insert(e4, 3)
# Should print 4 now
print (ll.get_position(3).value)
494
# Test delete
ll.delete(1)
# Should print 2 now
print (ll.get_position(1).value)
101
# Should print 4 now
print (ll.get_position(2).value)
203
# Should print 3 now
print (ll.get_position(3).value)
494
import random as random
E =[]
for k in range(100):
E.append(Element(random.randint(1,10000)))
ll = LinkedList()
for k in range(100):
ll.append(E[k])
for i in range(100):
print(ll.get_position(i).value)
9656 9656 4509 1356 9312 8289 7020 9412 4431 2283 8265 9535 4155 9205 4135 9736 5228 4380 5084 3540 7285 5262 2848 3315 912 5989 3884 6281 179 5496 5660 4249 6588 3374 2093 8686 3882 2106 2014 5232 712 8064 5489 1096 9049 8249 9278 1333 8010 6917 9583 2687 6262 2035 2881 2176 6238 230 7835 6427 8934 5016 5557 6439 9998 7756 3268 1722 4205 8121 4732 2966 4188 6723 7726 5965 8040 567 181 4605 2461 7387 3866 5203 1940 4572 5532 8942 883 9101 513 4534 872 8980 5252 7153 5669 499 1785 8385