2D square grid graph written in Java.
Two separate modes are provided:
- Demo Mode : User places two endpoints and optionally as many walls as possible with the mouse.
The shortest path is determined by theedu.princeton.cs.algs4
graph api. - Game Mode : Player is must place two endpoints, in a starting grid with random walls. The shortest path,
if it exists, is traveled and the path taken is converted to walls. Try to cover as many squares as possible. The endpoints must be placed far enough apart, about 5 squares, and in different quadrants of the grid.
edu.princeton.cs.algs4
lib- optionally Java23