Presentation is loading. Please wait.

Presentation is loading. Please wait.

11 Project 2 Towers of Hanoi. 22 Towers of Hanoi is a well known puzzle that can be very difficult to solve manually but can be programmed very easily.

Similar presentations


Presentation on theme: "11 Project 2 Towers of Hanoi. 22 Towers of Hanoi is a well known puzzle that can be very difficult to solve manually but can be programmed very easily."— Presentation transcript:

1 11 Project 2 Towers of Hanoi

2 22 Towers of Hanoi is a well known puzzle that can be very difficult to solve manually but can be programmed very easily with a recursive solution. http://en.wikipedia.org/wiki/Tower_of_Hanoi Write a C# console application to show the moves to solve the puzzle for an arbitrary number of disks. Call the pegs A, B, and C. Let the user specify the number of disks.

3 3 Specifications Get the number of disks from the user. Require the number to be greater than 0 and no more than 10. Start with all disks on Peg A Output a message describing each move. After each move show the configuration of the pegs. Your output should match the sample runs for the same input.

4 4 Character Graphics Represent disk n by a string of 2n-1 X's X XXX XXXXX XXXXXXX Example: A stack of four disks.

5 5 Sample Run Continued on next slide.

6 6 Sample Run (continued)

7 7 Sample Run

8 8 Specifications Define a class to represent a peg and the disks stacked on top of it. Essentially identical to a stack. Each Peg should have a name, consisting of a single character. Enforce the constraint that you can't put a larger disk on top of a smaller one. Throw exception on violation of this rule or stack overflow. (Shouldn’t happen)

9 9 Specifications Avoid throwing an exception on invalid input. Use int.TryParse() to convert strings to ints. Make your output match the sample runs.

10 10 Ground Rules You may work with one other student. OK to work alone if you prefer. If you do work as a pair Work together! Both members are expected to contribute. Both members should understand the program in detail. Submit a single program. Do not share your code with other students. Before or after submitting the project. OK to discuss the project. Do not copy any other student’s work. Don’t look at anyone else’s program. Don’t let anyone look at your program.

11 11 Ground Rules Except for code posted on the class web site Do not copy code from the Internet or any other source. Write your own code.

12 12 Submission Project is due by 11:59 PM, Wednesday, Jan. 26. Late projects will not be accepted. Deliverables: Zipped project folder. Use the Windows "Send to Compressed Folder" command to zip your folder. Submit your file via Blackboard Assignments. Not Email If you work with another student, include both names in the submission comments. Other student submit Blackboard comment with both names. End of Presentation


Download ppt "11 Project 2 Towers of Hanoi. 22 Towers of Hanoi is a well known puzzle that can be very difficult to solve manually but can be programmed very easily."

Similar presentations


Ads by Google