linked_list

Classes for linked lists and doubly linked lists


Keywords
linked, list, data, structure
License
MIT
Install
pip install linked_list==0.0.7

Documentation

Linked list package

This package currently supports linked lists and doubly linked lists. Push and pop operations are supported where appropriate.

Sample usage:

>>> import linked_list as ll
>>> lst = LL(data=1)
>>> pushback(lst, LL(data=2))
>>> print popfront(lst)[1] # Will print 1