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 #42

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
13 changes: 9 additions & 4 deletions data_structures/3_LinkedList/3_linked_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -79,11 +79,16 @@ def remove_at(self, index):

itr = itr.next
count+=1

def insert_values(self, data_list):
self.head = None
for data in data_list:
self.insert_at_end(data)
self.head= None
self.head = Node(data_list[0], None)
for data in range(1, len(data_list)):
itr = self.head
while itr.next:
itr = itr.next

itr.next = Node(data_list[data], None)


if __name__ == '__main__':
Expand Down