当前位置: 首页>>代码示例>>C++>>正文


C++ Maze::ReadMaze方法代码示例

本文整理汇总了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;
	}
}
开发者ID:Mikeykem,项目名称:MyFirstRepo,代码行数:13,代码来源:Test.cpp

示例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;
}
开发者ID:Salimchaouqi,项目名称:maze-solver,代码行数:88,代码来源:humanMazeDriver.cpp


注:本文中的Maze::ReadMaze方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。