本文整理汇总了C++中Maze::ReadMaze方法的典型用法代码示例。如果您正苦于以下问题:C++ Maze::ReadMaze方法的具体用法?C++ Maze::ReadMaze怎么用?C++ Maze::ReadMaze使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Maze
的用法示例。
在下文中一共展示了Maze::ReadMaze方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
int main(){
Maze maze;
maze.ReadMaze(MAZE_FILE);
MazeSolver* solver = new MazeSolver(maze);
solver->solve();
vector<int> pathX = solver->getPathX();
vector<int> pathY = solver->getPathY();
cout << maze << endl;
cout << "The path taken:" << endl;
for (int i = pathX.size() - 1; i <= 0; i--){
cout << pathX[i] << "," << pathY[i] << endl;
}
}
示例2: main
int main(){
Maze M;
M.ReadMaze(MAZE_FILE);
cout<<"This is the maze."<<endl;
cout << M;
M.getStart();
int x, y;
M.getCurrentLocation(x,y);
cout<<"Get started! Now you are @ ("<<x<<","<<y<<")"<<endl;
cout << M;
char s;
while(!M.isFinish())
{
cout<<"Please select a direction to travel from the following - N, S, W or E: ";
cin>>s;
while(!(s=='N'||s=='n'||s=='W'||s=='w'||s=='E'||s=='e'||s=='S'||s=='s'))
{
cout<<"Invalid input! Please input again!";
cin>>s;
}
if(s=='N'||s=='n')
{
if(M.north())
{
M.getCurrentLocation(x,y);
cout<<"March north! Now you are @ ("<<x<<","<<y<<")"<<endl;
cout << M;
}
else
{
M.getCurrentLocation(x,y);
cout<<"Could not move in that direction! Now you are @ ("<<x<<","<<y<<")"<<endl;
cout << M;
}
}
if(s=='E'||s=='e')
{
if(M.east())
{
M.getCurrentLocation(x,y);
cout<<"March east! Now you are @ ("<<x<<","<<y<<")"<<endl;
cout << M;
}
else
{
M.getCurrentLocation(x,y);
cout<<"Could not move in that direction! Now you are @ ("<<x<<","<<y<<")"<<endl;
cout << M;
}
}
if(s=='W'||s=='w')
{
if(M.west())
{
M.getCurrentLocation(x,y);
cout<<"March west! Now you are @ ("<<x<<","<<y<<")"<<endl;
cout << M;
}
else
{
M.getCurrentLocation(x,y);
cout<<"Could not move in that direction! Now you are @ ("<<x<<","<<y<<")"<<endl;
cout << M;
}
}
if(s=='S'||s=='s')
{
if(M.south())
{
M.getCurrentLocation(x,y);
cout<<"March south! Now you are @ ("<<x<<","<<y<<")"<<endl;
cout << M;
}
else
{
M.getCurrentLocation(x,y);
cout<<"Could not move in that direction! Now you are @ ("<<x<<","<<y<<")"<<endl;
cout << M;
}
}
}
cout<<"Congratulations - destination reached!"<<endl;
return 0;
}