CSCI 261 - Programming Concepts - Spring 2020

AXC - People Validator

This assignment is due by Thursday, April 30, 2020, 11:59 PM.
As with all assignments, this must be an individual effort and cannot be pair programmed. Any debugging assistance must be provided in accordance with the course collaboration policy.
Do not forget to complete the following labs with this set: LXC .

· Instructions · Rubric · Submission ·


The Purpose


This extra credit homework allows you to earn 20 extra credit homework points. To do so, you must demonstrate a proficiency in classes, file input and output, pointers, and dynamically allocating memory and arrays.


The Person Class


Write a Person class in C++, with separate Person.h and Person.cpp files. Your Person class should have the following private data members:

In addition, your Person class should have the following member functions:

NOTE: you can assume the file you are reading in is correct, e.g., only 'M' or 'F' is given for gender.

You may want to consider NotePad or WordPad on your computer to write your code for your Person class. Once you feel good about what you've written, copy the code into your project. Doing this will help you see where you might make mistakes on upcoming exams. (No, pointers and dynamic memory will not be on any exam, but classes will!)


Your main() Requirements:


Before we allocate space for our persons, we need to find out how many we need. First, we'll read through the file, counting how many valid persons there are. Then, we'll iterate through the file again, this time reading the valid persons into a dynamically allocated array.

As usual, we recommend you use the "Incremental Build" software development model. To encourage this use, we break down your main() requirements into steps. We suggest you throughly test each step before moving to the next step.

Step 1: How many valid people are in the file?

Step 2: Add valid people to your new people array.

There are exactly 19 invalid people in the data file. At this point you will know by the program output whether you have found them all.

Step 3: Sorting your people array.

We now want to sort your valid people array. We've previsouly discussed the selectionSort() algorithm (a simple sorting algorithm), and provided brief pseudocode for implementing it. Put the function prototypes above your main() and function implementations below. Create these prototypes and function headers so that they operate on your People array, with the end goal of sorting your valid People array by each person's height. For full credit, you should pass a pointer to the array to your selectionSort() function, and use this pointer within the function to access array elements. However, we suggest you first implement the sorting feature using the [ ] notation that you are familiar with, and then (if desired) modify the function to use pointers (not [ ] ). NOTE: getting the function to work with [ ] is worth one point; getting the function to work with * is worth two points.

Step 4: Print a few valid people.

Using your Person's output() function, print the following three valid people:

Do not hard code any offsets or values. Your program should be flexible and based off of the validCount pointer. Your program will be tested against a hidden private †est file to ensure flexibility.

Step 5: Good practice.

There are two things you should do to end the program. First, close your file input stream. Second, free the memory allocated by your program to hold the valid people. Be sure to use the delete[] operation, not delete without [] .


Grading Rubric


Your submission will be graded according to the following rubric.

PointsRequirement Description
2 All code submitted properly.
2 All labs completed and submitted
LXC
9 Assignment created with dynamic arrays and meets requirements above.
1 Public test file generates correct results.
2 Private test file generates correct results.
2 Functional requirements above met.
2 (1) Comments used
(2) Coding style followed
(3) Appropriate variable names, constants, and data types used
(4) Instructions followed
20 Total Points

This assignment is due by Thursday, April 30, 2020, 11:59 PM.
As with all assignments, this must be an individual effort and cannot be pair programmed. Any debugging assistance must be provided in accordance with the course collaboration policy.
Do not forget to complete the following labs with this set: LXC .


Submission


Always, always, ALWAYS update the header comments at the top of your main.cpp file. And if you ever get stuck, remember that there is LOTS of help available. The following instructions are copied from How to Submit Homework.


It is critical that you follow these steps when submitting homework.

If you do not follow these instructions, your assignment will receive a major deduction. Why all the fuss? Because we have several hundred of these assignments to grade, and we use computer tools to automate as much of the process as possible. If you deviate from these instructions, our grading tools will not work. And that makes us very unhappy. And when we're unhappy, we give penalties. Thus, make us happy.


Submission Instructions



Here are step-by-step instructions for submitting your homework properly:
  1. File and folder names are extremely important in this process. Please double-check carefully, to ensure things are named correctly.
    1. The top-level folder of your project must be named SetXC
    2. Inside SetXC, create 2 sub-folders that are required for this Set. The name of each sub-folder is defined in that Set (e.g. LXC, and AXC).
    3. Copy your files into the subdirectories ofSetXC (steps 1-2), zip this SetXC folder (steps 3-4), and then submit the zipped file (steps 5-11) to Canvas.
    4. For example, when you zip/submit SetXC, there will be 2 sub-folders called LXC, and AXC inside the SetXC folder, and each of these sub-folders will have the associated files.

  2. Using Windows Explorer (not to be confused with Internet Explorer), find the file named "main.cpp" located inside the folder for the particular lab or homework assignment you will submit.

    STOP: Are you really sure you are viewing the correct assignment's folder?

  3. Now, for AXC, right click on the main.cpp to copy the file. Then, return to the SetXC/AXCfolder and right click to paste the file. In other words, put a copy of your homework's main.cpp source code into the SetXC/AXC folder. Repeat this for each additional header & source file you have with this assignment, plus CMakeLists.txt.

    Follow the same steps for LXC, to put a copy of your lab's main.cpp into the SetXC/LXC folder.

    STOP: Are you sure your SetXC folder now has all your code to submit?

  4. Now, right-click on the "SetXC" folder.
    1. In the pop-up menu that opens, move the mouse "Send to..." and expand the sub-menu.
    2. In the sub-menu that opens, select "Compressed (zipped) folder".

    STOP: Are you really sure you are zipping a SetXC folder with sub-folders that each contain a main.cpp file in it?

  5. After the previous step, you should now see a "SetXC.zip" file.

  6. Now visit the Canvas page for this course and click the "Assignments" button in the sidebar.

  7. Find SetXC, click on it, find the "Submit Assignment" area, and then click the "Choose File" button.

  8. Find the "SetXC.zip" file created earlier and click the "Open" button.

    STOP: Are you really sure you are selecting the right homework assignment? Are you double-sure?

  9. WAIT! There's one more super-important step. Click on the blue "Submit Assignment" button to submit your homework.

  10. No, really, make sure you click the "Submit Assignment" button to actually submit your homework. Clicking the "Choose File" button in the previous step kind of makes it feel like you're done, but you must click the Submit button as well! And you must allow the file time to upload before you turn off your computer!

  11. Canvas should say "Submitted!". Click "Submission Details" and you can download the zip file you just submitted. In other words, verify you submitted what you think you submitted!
In summary, you must zip the "SetXC" folder and only the "SetXC" folder, this zip folder must have several sub-folders, you must name all these folders correctly, you must submit the correct zip file for this homework, and you must click the "Submit Assignment" button. Not doing these steps is like bringing your homework to class but forgetting to hand it in. No concessions will be made for incorrectly submitted work. If you incorrectly submit your homework, we will not be able to give you full credit. And that makes us unhappy.


This assignment is due by Thursday, April 30, 2020, 11:59 PM.
As with all assignments, this must be an individual effort and cannot be pair programmed. Any debugging assistance must be provided in accordance with the course collaboration policy.
Do not forget to complete the following labs with this set: Warning: count(): Parameter must be an array or an object that implements Countable in /Users/jpaone/Desktop/261_Programming Concepts/Websites/Spring2020_php/makeHWPage.php on line 19 .