We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
def insertNodeAtPosition(llist, data, position):
# Write your code here
if llist is None:
llist = SinglyLinkedList()
llist.data = data
else:
current = llist
for i in range(1, position):
current = current.next
Insert a node at a specific position in a linked list
You are viewing a single comment's thread. Return to all comments →
def insertNodeAtPosition(llist, data, position): # Write your code here if llist is None: llist = SinglyLinkedList() llist.data = data else: current = llist for i in range(1, position): current = current.next