Mars Rover

本文介绍了一个使用面向对象编程(OOP)解决火星漫游者问题的小程序。该程序分为两部分:服务器端火星漫游者项目及客户端测试火星漫游者。通过发送指令控制漫游者在矩形平面上移动。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

前天用OOP方式写的一个小程序

--------------------------------------------------------------------------------------------------------------------------------

Problem Description:

MARS ROVERS

Squads of robotic rovers are to be landed by NASA on a plateau on Mars. This plateau, which is curiously rectangular, must be navigated by the rovers so that their on-board cameras can get a complete view of the surrounding terrain to send back to Earth.

A rover's position and location is represented by a combination of x and y co-ordinates and a letter representing one of the four cardinal compass points. The plateau is divided up into a grid to simplify navigation. An example position might be 0, 0, N, which means the rover is in the bottom left corner and facing North.

In order to control a rover, NASA sends a simple string of letters. The possible letters are 'L', 'R' and 'M'. 'L' and 'R' makes the rover spin 90 degrees left or right respectively, without moving from its current spot. 'M' means move forward one grid point, and maintains the same heading. Assume that the square directly North from (x, y) is (x, y+1).

INPUT:

The first line of input is the upper-right coordinates of the plateau, the lower-left coordinates are assumed to be 0, 0. The rest of the input is information pertaining to the rovers that have been deployed. Each rover has two lines of input. The first line gives the rover's position, and the second line is a series of instructions telling the rover how to explore the plateau. The position is made up of two integers and a letter separated by spaces, corresponding to the x and y co-ordinates and the rover's orientation. Each rover will be finished sequentially, which means that the second rover won't start to move until the first one has finished moving.

OUTPUT

The output for each rover should be its final co-ordinates and heading.

INPUT AND OUTPUT

Test Input:

5 5

1 2 N

LMLMLMLMM

3 3 E

MMRMMRMRRM

Expected Output:

1 3 N

5 1 E

--------------------------------------------------------------------------------------------------------------------------------

http://files.cnblogs.com/slime/MarsRover.zip

This project is to solve the Mars Rovers Problem. I separate this project to two parts by using Object-Oriented programming, project MarsRover is server side, and testMarsRover is client side. In my design, client side only need header files and the lib file of MarsRover.

interface/iaction.h

interface/iheading.h

interface/inavigator.h

interface/iplateau.h

interface/irover.h

factory/headingfactory.h

factory/navigatorfactory.h

factory/plateaufactory.h

factory/roverfactory.h

--------------------------------------------------------------------------------------------------------------------------------

Build Information:

Visual Studio 2008, Warning Level 4

 

转载于:https://www.cnblogs.com/slime/archive/2010/08/03/1790902.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值