Linked Lists in Python

For linked lists, I normally use the llist module in Python, but I get a ModuleNotFound error when I try to use it. I'm using this module because I would like to iterate through the list and delete nodes of the list in constant time. What do other people use? Do you implement your own linked list?

Comments (1)