Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update 3_linked_list.py #53

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
20 changes: 11 additions & 9 deletions data_structures/3_LinkedList/3_linked_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,21 @@ def get_length(self):

def insert_at_begining(self, data):
node = Node(data, self.head)

if self.head is None:
self.head = node
self.tail = node
return
node.next = self.head
self.head = node

def insert_at_end(self, data):
if self.head is None:
self.head = Node(data, None)
return

itr = self.head

while itr.next:
itr = itr.next

itr.next = Node(data, None)
self.insert_at_begining(data)
return
node = Node(data)
self.tail.next = node
self.tail = node

def insert_at(self, index, data):
if index<0 or index>self.get_length():
Expand Down