Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/alexandrecarlton/adjacency-list

My implementation of an Adajency List in Python.
https://github.com/alexandrecarlton/adjacency-list

Last synced: 17 days ago
JSON representation

My implementation of an Adajency List in Python.

Awesome Lists containing this project

README

        

An implementation of an Adjacency List in Python.

The underlying structure of this representation is that of a dictionary, where each key is a vertex that points to a list of adjacent vertices as its value.

Some methods are given (such as a BFS traversal) with more to come.