|
|
|
|
|
by maxbond
1361 days ago
|
|
Curious why both of you need linked lists in Python? Are you doing a lot of list insertion operations or something & allocations are bringing it to a crawl? I'm quite tickled by the idea that you need a linked list because your allocator is spending too much time - traversing a linked list. |
|
I was just surprised as I thought it was a basic structure, so it just seemed like there ought to be a `from collections import linkedlist` because python just feel like the kind of language where you just do that without even consulting the docs.