Skip to content

A mobile application (Android and iOS) to visualize DFS and BFS path finding algorithms.

Notifications You must be signed in to change notification settings

2208Abhinav/path_finder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

23 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Path Finder

A mobile application (Android and iOS) to visualize DFS and BFS path finding algorithms.

Build the apk:

  • First make sure that you have installed all the necessary packages by running the following command:
$ flutter pub get
  • Run the following command to build the apk of the application.
$ flutter build apk

The apk can be found at build/app/outputs/flutter-apk/app-release.apk

DFS

Depth First Search (DFS) just finds a valid path between two points. There is no check on the length of the path. The path (if found) can be absurdly long or can be the shortest.

dfs_path_finder

BFS

Breadth First Search (BFS) finds the shortest valid path between two points.

bfs_path_finder gif

About

A mobile application (Android and iOS) to visualize DFS and BFS path finding algorithms.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages