Skip to content

Add COMP10001 path/search algorithms

Zachary Lee requested to merge awalz/asclinic-system:aruco_localization into master

These were exercises we had to do. comp10001_bfs.py seems to be a search and return path. comp10001_dijkstra.py seems to be a Dijkstra algorithm using node objects that keep track of the neighbours/have member functions. comp10001_dijstra-alt.py seems to be a Dijkstra algorthm where the nodes are 'structs' and the algorithm is implemented in a separate function.

Merge request reports