Skip to content

NikolaiT/TraversingGraphs

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 

Repository files navigation

Traversing Graphs

This is a little implementation of two common path traversal algorithms:

  • Depth-First-Search
  • Breadth-First-Search

using adjacency lists as Graph demonstration.

I wrote them while learning for my upcoming algorithms exam. The algorighms are copied more or less from my professors pseudocode, but since the concepts are so well known, it doesn't really matter where I get the algorithm from.

The only slight helpful thing here is to show novices how to acutally implement such algorithms in a simple to learn language like Python.

Python3 and Python2

The code works both for Python3 and Python2.

Contact

Look there: incolumitas.com

About

Shows in Python how to traverse graphs with Depth-First-Search and Breadth-First-Search

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages