├── .gitignore ├── LICENSE ├── README.md ├── algo ├── aldousbroder.go ├── btree.go ├── growingtree.go ├── huntandkill.go ├── path.go ├── rand.go ├── recursivebacktracker.go ├── sidewinder.go └── wilson.go ├── go.mod ├── go.sum ├── main.go ├── maze ├── cell.go ├── djikstra.go ├── maze.go ├── rand.go └── solution.go └── render ├── cell.go ├── const.go ├── render.go └── walls.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/README.md -------------------------------------------------------------------------------- /algo/aldousbroder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/algo/aldousbroder.go -------------------------------------------------------------------------------- /algo/btree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/algo/btree.go -------------------------------------------------------------------------------- /algo/growingtree.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/algo/growingtree.go -------------------------------------------------------------------------------- /algo/huntandkill.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/algo/huntandkill.go -------------------------------------------------------------------------------- /algo/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/algo/path.go -------------------------------------------------------------------------------- /algo/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/algo/rand.go -------------------------------------------------------------------------------- /algo/recursivebacktracker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/algo/recursivebacktracker.go -------------------------------------------------------------------------------- /algo/sidewinder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/algo/sidewinder.go -------------------------------------------------------------------------------- /algo/wilson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/algo/wilson.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/main.go -------------------------------------------------------------------------------- /maze/cell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/maze/cell.go -------------------------------------------------------------------------------- /maze/djikstra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/maze/djikstra.go -------------------------------------------------------------------------------- /maze/maze.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/maze/maze.go -------------------------------------------------------------------------------- /maze/rand.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/maze/rand.go -------------------------------------------------------------------------------- /maze/solution.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/maze/solution.go -------------------------------------------------------------------------------- /render/cell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/render/cell.go -------------------------------------------------------------------------------- /render/const.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/render/const.go -------------------------------------------------------------------------------- /render/render.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/render/render.go -------------------------------------------------------------------------------- /render/walls.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fred1268/amaze/HEAD/render/walls.go --------------------------------------------------------------------------------