Python Forum

Full Version: --- Python lists and Linked Lists ---
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
topic was closed thanks.
How would doing it for you help you to learn?
Show us your work and where you are stuck
Actually, I am not sure about any code I wrote. The code I wrote does not work at all and I was very stressed. I guess I cannot do this homework but I am very grateful for your help.
A good article about linked lists and Python: https://realpython.com/linked-lists-pyth...nked-lists

They describe what a linked list is, explaining the collections.deque and they show an own implementation of linked lists.

If you don't have to implement your own linked list, you could use collections.deque.

Time measurement could be done with the timeit module.