Skip to content

jar3m/Graph

 
 

Repository files navigation

#Graph search algorithms in C

##Currently implemented

  • Depth-first search
  • Breadth-first search
  • Dijkstra's algorithm (not optimized, stil slow)

##How to run ###Breadth-first search

$make bfs
$./test

###Depth-first search

$make dfs
$./test

###Dijkstra's algorithm

$make dijkstra
$./test

About

Graph search algorithms

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C 98.2%
  • Makefile 1.8%