Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

For this assignment, suppose that an automated manufacturing tracker records production QC test results in batches in a results string. For example, Q2p1d1 would indicate

For this assignment, suppose that an automated manufacturing tracker records production QC test results in batches in a results string. For example, Q2p1d1 would indicate that a single batch of two QC tests was performed with the results of one pass and one defect. Note that the character Q is used to start a batch of QC test results. The character p is to identify the number of tests that passed the QC test, and the character d indicates the number of defects. More than one batch of QC test results can be reported in a single results string. For example, Q2d1p1Q5p3d2 would indicate two batches of QC test results, one with two test results and one with five test results, with a combined total of four passes and three defects. Precisely, to be a valid QC test results string, - a batch of results must begin with the character Q (case sensitive) - a batch of results must report both pass and defect test results with p and d in either order - no leading zeros are allowed in any numeric value being reported - the total number of QC tests in a batch must equal the number of pass and defect test results. - the total number of QC tests in a batch must be greater than zero (0). - a single result string may include multiple batches of results All of the following are examples of valid result strings: Q1p0d1Q1d0p1 (two batches of results, two total tests, one pass, one defect) Q5d2p3 (one batch of results, five total tests, two defects, three passes) All of the following are examples of invalid result strings: q1p0d1 (batch must be reported with Q) Q1pd1 (a number for pass is required) Q1p1d (a number for defect is required) Q1p0d1 asdfR (extra characters not allowed) Q5p00003d0002 (leading zeros not allowed)

Q5p0d0 (pass and defect results must equal the total number of tests) Q0p0d0 (batch cannot be zero) Your task For this project, you will implement the following five functions, using the exact function names, parameter types, and return types shown in this specification. (The parameter names may be different if you wish). bool isValidQC(string results) This function returns true if its parameter is a well-formed test result string described above or false otherwise. int passQC(string results) If the parameter is a well-formed test result string, this function should return the total number of pass test results from all the batches reported in the string. If the parameter is not valid, return -1 . int defectQC(string results) If the parameter is a well-formed test result string, this function should return the total number of defect test results from all the batches reported in the string. If the parameter is not valid, return -1. int totalQC(string results) If the parameter is a well-formed test result string, this function should return the total number of tests being reported from all the batches in the string. If the parameter is not a valid, return -1. int batches(string results) If the parameter is a well-formed QC test result string, this function should return the total number of batches reported in the string. If the parameter is not a valid, return -1. These are the only five functions you are required to write. Your solution may use functions in addition to these five if you wish. While we won't test those additional functions separately, using them may help you structure your program more readably. Of course, to test them, you'll want to write a main routine that calls your functions. During the course of developing your solution, you might change that main routine many times. As long as your main routine compiles correctly when you turn in your solution, it doesn't matter what it does, since we will rename it to something harmless and never call it (because we will supply our own main routine to test your functions thoroughly). Clearly, I am expecting the last four functions to invoke the first function as they complete their assigned task. This code reuse is one of the major benefits of having functions. So please do that. Programming Guidelines The functions you write must not use global variables whose values may be changed during execution (so global constants are allowed).

When you turn in your solution, none of the five required functions, nor any functions they call, may read any input from cin or write any output to cout. (Of course, during development, you may have them write whatever you like to help you debug.) The correctness of your program must not depend on undefined program behavior. For example, you can assume nothing about c 's value at the point indicated, nor even whether or not the program crashes: int main() { string s = "Hello"; char c = s[5]; // c's value is undefined ... Be sure that your program builds successfully, and try to ensure that your functions do something reasonable for at least a few test cases. That way, you can get some partial credit for a solution that does not meet the entire specification. There are many ways you might write your main routine to test your functions. One way is to interactively accept test strings: int main() { string s; cout.setf( ios::boolalpha ); // prints bool values as "true" or "false" for(;;) { cout << "Enter a possible teststring: "; getline(cin, s); if (s == "quit") break; cout << "isValidQC returns "; cout << isValidQC(s) << endl; cout << "pass test result(s) returns "; cout << passQC(s) << endl; cout << "defectQC(s) returns "; cout << defectQC(s) << endl; cout << "totalQC(s) returns ";

cout << totalTests(s) << endl; cout <<< "batches(s) returns "; cout << batches(s) << endl; } return( 0 ); } While this is flexible, you run the risk of not being able to reproduce all your test cases if you make a change to your code and want to test that you didn't break anything that used to work. Another way is to hard-code various tests and report which ones the program passes: int main() { if (!isValidQC("")) cout << "test 1 OK: !isValidQC(\"\")" << endl; if (!isValidQC(" ")) cout << "test 2 OK: !isValidQC(\" \")" << endl; return( 0 ); } This can get rather tedious. Fortunately, the library has a facility to make this easier: assert . If you #include the header , you can call assert in the following manner: assert(some boolean expression); During execution, if the expression is true, nothing happens and execution continues normally; if it is false, a diagnostic message is written to cerr telling you the text and location of the failed assertion, and the program is terminated. As an example, here's a very incomplete set of tests: #include #include #include using namespace std; ...

int main() { int main() { assert( isValidQC("") == false ); assert( isValidQC(" ") == false ); assert( passQC( " " ) == -1 ); assert( defectQC( " " ) == -1 ); assert( totalQC( " " ) == -1 ); assert( batches( " " ) == -1 ); assert( isValidQC( "Q2p1d1" ) == true ); assert( passQC( "Q2p1d1" ) == 1 ); assert( defectQC( "Q2p1d1" ) == 1 ); assert( totalQC( "Q2p1d1" ) == 2 ); assert( batches( "Q2+1-1" ) == -1 ); cout << "All test cases succeeded" << endl; return( 0 ); }

****Please code this in C++, with comments, and adding few asserts in the end****

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions