Description
You are going to implement a program that provides the solution of the Josephus problem (see the description on the class slides). You are going to implement:
2
•
• •
A circular list. It should have at least the following functionalities: insert a new element, print all elements, remove an element, list third element from given one. Data should be private, and accessible from the main program only through calling member functions.
You have freedom to the design of the program Discuss your design choices in the report you submit.
The main program will use the provided functionality to answer the following question: suppose we start the process from a given node i. Which is the last node to survive ?
What to turn in
You will turn in
1. ashortwrittenreportcontaining:
• A description of the significant choices/issues in the design of your code.
• Listing of your experiments, showcasing the capabilities of the program.
2. Thesourcecodeofyourprogram.
You may turn in the document via elearning.e-uvt.ro (Class moodle).
1
3 Coding standards
A percentage of your grade will be based on the quality of your code, so pay attention to it. Discuss changes (if any) you made to programs presented in class. Take extra care in documenting the code you are implementing on your own. Properly modularize the code (for instance implement separate functions for significant parts of the program).


