// Queen.cpp : Defines the entry point for the console application. // #include "stdafx.h" #define LEFT 0 #define RIGHT 1 #define UP 2 #define DOWN 3 #define VISITED 10 //如果走过,则标记为VISITED #define UNVISITED 9//初始都为UNVISITED //4个行进方向 typedef struct direction