Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions Linked_List/main.py
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@

# Each node contains a 'data' and link to the 'next' node
class node:
def __init__(self,data=None):
self.data=data
self.next=None

# linked_list contains the nodes that we created above.
class linked_list:
def __init__(self):
self.head=node()
Expand Down Expand Up @@ -127,4 +128,4 @@ def set(self,index,data):
if cur_idx==index:
cur_node.data=data
return
cur_idx+=1
cur_idx+=1