A desktop application developed to visualize the path finding algorithms written in C++. Take note that this project being tested on Ubuntu 20.04 environment only.
./builldDockerImage.sh
./runDockerFile.sh
sudo apt-get update -y
sudo apt-get install -y libwxgtk3.0-gtk3-dev (PS: for Ubuntu 20.04)
sudo apt-get install -y libwxgtk3.0-dev (PS: for other versions of Ubuntu)
In this directory
mkdir build
cd build
cmake ..
cmake --build .
./PathFindingVisualizer
- For this case, quite similar to BFS since the travel cost across each node is the same
- Can find path with minimum travel cost
- Explore less nodes than BFS
- Can find path with minimum travel cost
- Can identify unreachable nodes quickly