Reference no: EM131028394
CheeseCake
This assignment is quite simple but could turn out to be one of the more complicated programming projects that you will have this term. This assignment will involve storing information in a dynamically allocated array, sorting information and then looking at the data and analyzing the data in the form of a summary. You are to read in a file that contain several records of data, each record will contain: The Last Name of the person taking the survey, First Name of the person taking the survey, and a character "C" or Character "P" that indicates whether a person believes that Cheese cake is a cake "C" or is really a pie "P" . There are an unknown number of records. Programming Specifications: Here are the lists of tasks and specifications.
1. Ask the user for the name of the input file. You must make sure it is a valid file and that it can be opened. If not, you need to continually ask the user for a valid file.
2. Open the file and read the contents only counting the number of records in the file.
3. Close file.
4. Dynamically allocate an array to store the data make sure that you only allocate enough storage to hold exactly the number of records needed.
5. Open the file and read the file into the array.
6. Sort the Array on Last Name in ascending order.
7. Print out the information (to standard output) using the example at the end of this document.
8. Print out at the end of the summary of information (i.e. how many people said that Cheesecake is a Cake and how many said it was a Pie).
9. Also print out the number of participants.
Be sure that the number of people who said Cheesecake is a Cake + Cheesecake is Pie is equal to the total number participants. COP3010 Programming I in C/C++ COP3014 Page 2 Design
Considerations:
1. You will use this C/C++ struct to define your data structure. struct Roster { string LName; string FName; char Cheesecake; } struct Roster * MyRoster;
2. You must determine how many records are in the file before you allocate the array to hold the data.
3. You must have the minimum functions to perform the following operations: o Get a valid file name that holds the data o Read the data into the array passing the array as a parameter o Sort the data o Find the number of people who said Cheesecake is a Pie passing the array as a parameter and returning the number as a return value of the function. o Find the number of people who said Cheesecake is a Cake passing the array as a parameter and returning the number as a return value of the function. o Sorting the Array passing the array as a parameter by reference. o Printing the report passing the array as a const value.
General Requirements:
1. No global variables, other than constants and type definitions!
2. Use the const qualifier on member functions wherever it is appropriate.
3. Your main routine should just mainly handle the calling of functions and basic program structure.
4. You will need to use the library for output. You may use the library for formatting your output if you wish.
5. When you write source code, it should be readable and well-documented.
6. You must have prototypes for all of your functions.
7. You may use any sorting technique you wish but the simplest (exchange or bubble sort) is all that is required.
8. The size of the array must match exactly the number of records in the file. No more no less.
Attachment:- CheeseCake.txt
Verilog description for the multiplexer
: Write a Verilog description for the multiplexer in the above figure by using a process containing a case statement rather than the continuous assignment statements.
|
Discuss how the mcqm system connects all processes
: Start the paper with a brief overview and description of FDA and ISO regulations that exist to protect consumers. Briefly discuss how the MCQM system connects all processes critical to compliance.
|
In how many ways can he choose 3 good hitters
: The coach of the Morton Valley Softball Team has 6 good hitters and 8 poor hitters. He chooses 3 hitters at random.
|
Jawbreaker vending machine
: Write a VHDL description for the state-machine diagram for the jawbreaker vending machine described in Problem. You may obtain the state machine diagram by either solving Problem or ?nding its solution on the textbook website.
|
Analyze the data in the form of a summary
: This assignment will involve storing information in a dynamically allocated array, sorting information and then looking at the data and analyzing the data in the form of a summary.
|
Is there enough information to determine the value of n
: If the number of permutations of n objects taken r at a time is six times the number of combinations of n objects taken r at a time, determine the value of r. Is there enough information to determine the value of n? Why or why not?
|
Vhdl description for the multiplexer
: Write a VHDL description for the multiplexer in below figure by using a process containing a case statement rather than the continuous assignment statements.
|
Do you think that x is a metal or nonmetal
: An element X reacts with F2(g) to form the molecular product shown here. Write a balanced equation for this reaction (do not worry about the phases for X and the product).
|
State-machine diagram for the soda vending
: a) Find the state-machine diagram for the soda vending machine as speci?ed. b) The speci?cation as given is not very user friendly. Rewrite it to provide a remedy for every possible situation that the user might encounter in using the machine.
|