Skip to content

Latest commit

 

History

History
14 lines (9 loc) · 1.29 KB

README.md

File metadata and controls

14 lines (9 loc) · 1.29 KB

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.