Skip to content

Commit

Permalink
feature to add input (TheAlgorithms#749)
Browse files Browse the repository at this point in the history
  • Loading branch information
rohankhatwani authored and poyea committed Apr 7, 2019
1 parent 56de3df commit 137871b
Showing 1 changed file with 12 additions and 8 deletions.
20 changes: 12 additions & 8 deletions data_structures/linked_list/singly_linked_list.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,16 +70,20 @@ def reverse(self):

def main():
A = Linked_List()
print("Inserting 10 at Head")
A.insert_head(10)
print("Inserting 0 at Head")
A.insert_head(0)
print("Inserting 1st at Head")
a1=input()
A.insert_head(a1)
print("Inserting 2nd at Head")
a2=input()
A.insert_head(a2)
print("\nPrint List : ")
A.printList()
print("\nInserting 100 at Tail")
A.insert_tail(100)
print("Inserting 1000 at Tail")
A.insert_tail(1000)
print("\nInserting 1st at Tail")
a3=input()
A.insert_tail(a3)
print("Inserting 2nd at Tail")
a4=input()
A.insert_tail(a4)
print("\nPrint List : ")
A.printList()
print("\nDelete Head")
Expand Down

0 comments on commit 137871b

Please sign in to comment.