Question: You will write a program to read in a file and found out how many groupings (blobs) of characters there are in the file (in

You will write a program to read in a file and found out how many groupings (blobs) of characters there are in the file (in C++)

You will write a program to read in a file and found

  1. Read in a file into a 2-dimensional array of size 22 rows and 72 columns.

  2. Leave the 1st column and last column blank. I.E. start populating data in Column 1.

  3. Leave the 1st row and last row blank. I.E. start populating data in Row 1

  4. You need only have one function in your program and that is the recursive function that

    finds and clears out each grouping or blob.

  5. Your only output is the correct number of blobs as show in the sample output.

The text file must be read into a 2-d array so that it can be searched. The first and last rows and columns of the 2-d array should be blank to avoid having to check boundaries of the array during processing. Once you find a character that is non-blank you should set it to a space so it is not detected again. If you choose to do the extra credit work, once you have printed out the text file or 2d array there is no reason to keep it whole.

You must hard code the file name to blob.txt.

  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.

out how many groupings (blobs) of characters there are in the file

XXXXXXXXXXXXXXX XXXXXXXXXXXXXXX XXXXXXXXXXXXXXX XXXXXXXXXXXXXXX + ++ XXXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXXX + + + XXXXXXXXXXXXXX XX XX XX XX XX XX XX XXXXX XX XX XX XXXXXXXXXXXXXX XX XX ++ + + +++++ Row 0 Column 0 x[0][0] x[1][0] x[2][0] Column 1 x[0][1] x[1][1] [2][1] Column 2 x[0][2] x[1][2] [2][2] Row 1 Row 2 XXXXXXXXXXXXXXX XXXXXXXXXXXXXXX XXXXXXXXXXXXXXX XXXXXXXXXXXXXXX + ++ XXXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXX XXXX + + + XXXXXXXXXXXXXX XX XX XX XX XX XX XX XXXXX XX XX XX XXXXXXXXXXXXXX XX XX ++ + + +++++ Row 0 Column 0 x[0][0] x[1][0] x[2][0] Column 1 x[0][1] x[1][1] [2][1] Column 2 x[0][2] x[1][2] [2][2] Row 1 Row 2

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!