/data-structures-in-python

Common Data Structures Implemented in Python

Primary LanguagePython

Build Status codecov Codacy Badge

Data Structures in Python

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.

Sequences

Linked List

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.