C++作业02

Programming Assignment #2: Function Recursion (Knights Tour)


Knight's Tour:

In the game of Chess (international chess, at least) the knight moves in an unusual pattern of 2 squares horizontally and then 1 square vertically or 2 squares vertically and then 1 square horizontally. The 8 possible moves for a knight are shown below:

       
  
8
 
1
  
 
7
   
2
 
   
Knight
   
 
6
   
3
 
  
5
 
4
  
       

Somewhere along the line the question was asked: Could a knight move to every location on a chess board without ever landing on a square more than once. This challege is known as the Knight's Tour.

Your assignment is to come up with a recursive solution to the Knight's Tour. As your knight travels around the board record the squares that he has touched by storing the move count, so for example the first square that the knight starts from would be marked with a 1 and the next square that the knight moves to would be marked with a 2 and so on until on a normal 8x8 chess board the knight moves to the last square and stores a 64 there......the knight would have them completed his tour. For this assignment, it is ok to use some global variables for recording some of the statistics you may want ( move count, tries, ect ).

Remember in recursion you call a function to solve a problem, then the function will call itself to solve the next step of the problem. This will go on until the function gets to some ending solution. In this case, your function would be a move for the knight, and it would call itself for the next place to try moving to, which would call itself for the next place to move, and so on, and so on.

For output from the program, you need to print out a map of where the knight visited in his tour. Here is an example of a Knight's Tour for a 5x5 board starting from the upper left corner:

Yeehaw!!! after 41 tries
and 16 bad moves
   1 20 17 12  3
  16 11  2  7 18
  21 24 19  4 13
  10 15  6 23  8
  25 22  9 14  5

Debugging Suggestions: For debugging use a 4x4 board to see if the recursive calls are working. Note: on a 4x4 board there is no solution when starting in the upper left corner, but it is still nice for following the algorithm for a few moves. Have the board print out after each move when you are first testing to verify that your algorithm is working. Once you are convinced your algorithm is good, you can have the board printed periodically to give you an update ( I had mine print out after every 10 million tries... some of the tours on an 8x8 board can take a while.... starting at location 4, 4 ( when first row and col are 0) the program ran over night and had tried 62,200,000,000 moves and had a ways to go before solving it with this brute force algorithm). The solution of the required tour does not take that long; it only takes 3,242,065 tries to find the soltution

Turn in: A paper copy of your code with a print out of your of the tour take by your knight on a 8x8 board. For the tour you turn in, start the knight in the upper left corner. The tour can be captured from the command window (black screen) by using Select All and then Copy from the command windows menus, then you can paste your output below your programs code as a comment.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
C 学生作业管理系统是一个帮助学生和老师更好地管理和组织作业的在线平台。它提供了一种方便快捷的方式,使学生能够及时了解和完成自己的作业。 首先,学生可以在系统上查看每门课程的作业任务和截止日期。系统会提醒学生即将到期的作业,并保持学生对作业完成情况的经常更新。这样,学生不会错过任何截止日期,并能够更好地规划自己的时间以完成作业。 其次,学生可以在系统上提交作业。他们可以上传文件或输入文本,并将其发送给老师。这个过程是完全电子化的,消除了传统纸质作业可能出现的遗失或损坏的风险。老师也可以在系统上及时看到学生的提交,从而更好地跟踪和评估作业完成情况。 除了作业管理,C 学生作业管理系统还提供了其他功能。学生可以在系统上与老师和同学交流和讨论作业的问题,以及分享学习资源。这样,学生可以互相帮助和鼓励,促进学习氛围的形成和交流。 此外,C 学生作业管理系统还可以生成作业成绩和报告。老师可以将学生的作业成绩输入系统,并用图表和图表的形式进行分析和展示。这样,学生和家长可以更清楚地了解学生的学术表现,并对自己的学习进行调整和改进。 总的来说,C 学生作业管理系统提供了一个更有效和便捷的方式来管理作业。它帮助学生和老师更好地组织和跟踪作业,促进学生的学习和进步。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值