Common data structures implemented in a pythonic manner. This objects follow the python's data model by implementing the interface corresponding to each structure. Sequences can provide the same interface as built-in classes such as list
by emulating a container type.
From Wikipedia:
a linked list is a linear collection of data elements whose order is not given by their physical placement in memory. Instead, each element points to the next.