#include <cstdlib>
#include <istream>
+#include <memory>
#include <ostream>
#include <stdexcept>
+#include <vector>
-signed char adjacent[BOARD_SIZE][5] = {
+signed char Step::adjacent[BOARD_SIZE][5] = {
1, 4, -1, -1, -1,
0, 2, 5, -1, -1,
1, 3, 6, -1, -1,
}
return dist;
}
+
+std::vector<Step*> Step::successors(std::shared_ptr<Step> shared_this) {
+ std::vector<Step*> suc;
+ signed char hole_pos = board.hole();
+ for (int i = 0; adjacent[hole_pos][i] > 0; i++) {
+ suc.emplace_back(new Step{board, shared_this});
+ std::swap(suc.back()->board.board[hole_pos], suc.back()->board.board[adjacent[hole_pos][i]]);
+ }
+ return suc;
+}