-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathknightstour.h
46 lines (42 loc) · 1.33 KB
/
knightstour.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include <stack>
class Node{
private:
bool movedirs[8];//0...7
int movescount;
public:
Node(int x, int y, int turn);
int x;
int y;
int turn;
void print() const{
std::cout<<"Node{"<<x<<","<<y<<",[ ";
for(int i=0; i<=7; i++) std::cout<<movedirs[i]<<" ";
std::cout<<"]"<<","<<turn<<"}\n";
}
void setmove(int m);
bool alreadymoved(int m) const;
int getmovescount() const;
};
class KnightsTour{
private:
//arriba derecha y orden contrario a las manecillas del reloj
int moves[8][2]={{2,-1}, {2,1},//derecha
{1,2}, {-1,2},//abajo
{-2,1}, {-2,-1},//izquierda
{-1,-2}, {1,-2}};//arriba
std::stack<Node> s;
int** chessboard;
const int notvisited=0;
int bwidth, bheight;
void backtrack(const Node& currnode);
int getmove(const Node& currnode);//0...7
int nodegrade(int x, int y);
public:
KnightsTour(int bwidth, int bheight);
~KnightsTour();
bool validcoord(int x, int y);
void printboard();
int findpath(int x0, int y0, bool count);
bool isthereapath();
int countpaths();
};