Maze (1) 썸네일형 리스트형 Wilson's Algorithm 미로 만들기 MazePrinter.java import java.util.ArrayList; import java.util.List; import java.util.Random; public class MazePrinter { private Cell[][] cells; private int cellsRowCount; private int cellsColCount; private int totalBlankCount; public MazePrinter() { cells = new Cell[25 + 2][25 + 2]; initCells(); } public MazePrinter(int row, int col) { cells = new Cell[row + 2][col + 2]; initCells(); } public vo.. 이전 1 다음