The objective of this project is to apply what i have learned in theory about pathfinding algorithms and demonstrate how they work visually. The application will be written in SvelteKit for the UI and TypeScript for executing the algorithms.
- Breadth First Search
- Depth First Search
- Best First Search
- Dijkstra's Algorithm
- A* Algorithm (With Simple Heuristics)
- Hill Climb Search (With Simple Heuristics)
# Clone This Repostiory:
git clone https://www.github.com/Rishcursion/pathfinding-visualizer
cd pathfinding-visualizer
//Using the package manager of your choice:
//npm
npm install
//pnpm
pnpm install
//deno
deno install
//yarn
yarn install
//Starting the Vite Server:
//npm
npm run dev
//pnpm
pnpm run dev
//deno
deno task dev
Go to localhost:5173 on your web server to access the visualizer.