Added IterativeDeepening

This commit is contained in:
Niklas Birk
2019-03-27 20:38:47 +01:00
parent 72bdf77bf6
commit bb95a412d8
3 changed files with 102 additions and 22 deletions

View File

@ -28,26 +28,4 @@ class DepthFirstSearchTest
printSolution(actual);
}
// @Test
// void shouldReturnCorrectTargetChubekNode()
// {
// int[][] state = {
// {2, 0, 4},
// {6, 7, 1},
// {8, 5, 3}
// };
// var root = new EightPuzzleNode(state);
//
// int[][] targetState = {
// {1, 2, 3},
// {4, 5, 6},
// {7, 8, 0}
// };
// var expected = new EightPuzzleNode(targetState);
//
// var actual = new DepthFirstSearch().depthFirstSearch(root, expected);
//
// printSolution(actual);
// }
}