#include <istream>
#include <memory>
#include <ostream>
+#include <string>
#include <vector>
const int BOARD_DIM = 4;
std::ostream& operator<<(std::ostream& os, const Board& board);
struct Step {
+ Step(Board board, std::shared_ptr<Step> prev);
+
Board board;
std::shared_ptr<Step> prev;
- std::vector<Step*> successors(std::shared_ptr<Step> shared_this);
+
+ std::vector<std::shared_ptr<Step>> successors(std::shared_ptr<Step> shared_this) const;
+ int length() const;
+ int cost(const InvertedBoard& invgoal) const;
+
static signed char adjacent[BOARD_SIZE][5];
};
std::ostream& operator<<(std::ostream& os, const Step& step);
+std::shared_ptr<Step> find_path(const std::string& start, const std::string& goal);
+std::shared_ptr<Step> find_path(const Board& start, const Board& goal);
#endif /* _SLIDING_TILE_LIB_H */