Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

1. Goals Organize a modular program in the C/C++ world. To use an input file (p3Meow.txt) and read it line by line . To use

1. Goals

Organize a modular program in the C/C++ world.

To use an input file (p3Meow.txt) and read it line by line.

To use a command-line argument.

To handle end of file correctly.

To use C++ strings and a string operator.

To implement and use a linear linked list.

To implement an insertion sort.

2. The Project Implement a main function with a command-line argument that does these things:

Call banner() at the beginning of your program and bye() at the end.

Instantiate the List class

Open and read in the file named by the command-line argument. Handle eof properly. If there

are any problems, call fatal)() The input file contains a series of lines of text. Do not modify my file in order to make your program work. Do not remove the newline character on the end of the last line.

Use List::insert() to insert each line of the file into the List. (This is a linked-list insertion sort.)

After end of file, print the sorted list. You will be alphabetizing based on the entire line, not one

letter or one word. Use the < operator supported in the string class.

Call bye() before you return from main.

3. The List Class and Cell class. List and Cell comprise a tightly coupled pair of classes: neither makes sense without the other. There are two ways to create a tightly coupled pair of classes. One is shown in Lecture 4, the other is described and used in this assignment. Review the diagrams, descriptions, and code in Lecture 4. Borrow large parts of it. However, delete functions that you do not need.

Make a header file and an implementation file for List and Cell.

In the header file, write the class declaration for List, with the private class declaration for Cell

inside it (at the top) or implement a friend class in a separate header file for Cell.

If Cell is inside the private part of List, make everything in Cell public, so List can use it. If you

implement friend class, then everything in Cell class should be private.

In Cell, implement constructor and destructor. The parameters to the constructor should be a

string (the input text) and a Cell* that defaults to nullptr.

In the public part of List, write prototypes or inline functions for constructor, destructor, print,

and insert (described below).

In the private part of List define a pointer for the head of the list, and two scanning pointers:

prior and scan. Initialize the head to nullptr.

In the private part of List write a prototype for find() (described below). Add any other private

functions that you think are useful.

If your function fits on one line, put it entirely in the header file, instead of a prototype. This is

called an "inline function" and it increases the efficiency of the running program.

The find() function.

As shown in class, initialize the scan pointer to the head of the list and the prior pointer to nullptr.

In a 2-pointer walk, always set prior = scan before you change scan to scan->next.

j.

Do a 2-pointer walk down the list until scan points at a cell whose data is greater than the new data.

Return. At this point, prior is pointing to the cell that should precede the new cell.

The insert() function.

Call find() to position the scan and prior pointers on your linked list.

Instantiate a new Cell containing the line of text you just read and pointing to whatever scan

currently points to.

Then check prior: if it is nullptr, make head point at the new cell. Otherwise, make the prior

cell point at the new cell.

If you do this in the right order, it is four lines of code.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored 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

Recommended Textbook for

Modern Dental Assisting

Authors: Doni Bird, Debbie Robinson

13th Edition

978-0323624855, 0323624855

Students also viewed these Programming questions