Provides implementations of linked list data structures for Python, including singly linked list, doubly linked list, and doubly linked list with a sentinel node. Version 0.7.1 is the latest release; the library is stable but infrequently updated.
pip install llistVerified import paths — ran on the pinned version, not inferred.
Create singly and doubly linked lists, append elements, and convert to list.
Use `len(list(s))` or `s.size()` to get the length.
Use `list(d)[0]` or iterate over the list.
Convert to list first: `list(mylist)[start:stop]`.
Remember `llist.dllist` is a linked list, not the `collections.deque`.
Use `from llist import dllist` or `import llist; d = llist.dllist()`.
Convert to list first: `list(s)[index]`.
Use `s.size()` or `len(list(s))`.
No dependency data recorded yet.