8-puzzle
8-puzzle copied to clipboard
Java program to solve the 8 puzzle problem using branch and bound algorithm.
Results
1
8-puzzle issues
Sort by
recently updated
recently updated
newest added
When trying the following case: int[][] initial = { {7, 2, 4}, {5, 0, 6}, {8, 3, 1} }; we get a lot of lag and this error: Exception in...