Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

The purpose of this assignment is to give you practice working with arrays, passing them to functions, sorting, searching and reading and writing text files.

The purpose of this assignment is to give you practice working with arrays, passing them to functions, sorting, searching and reading and writing text files.

In this program you will read two files and store their contents in arrays. You will sort both arrays, and then search an array for each element of the second array.


Program Steps

- Open two input files and one output file.

- Input files

HW2-dictionary.txt - this file contains 16000 words

HW2-keywords.txt - this file contains 84 words

- Read in these two files and store their contents in 2 arrays of strings. Do not use a vector.

- Sort both arrays using either a selection sort, bubble sort or insertion sort. Use the same sort routine for sorting both arrays. Do not use the STL sort algorithm or quick sort.

- Search the dictionary array for each keyword. If the keyword is not present in the dictionary array, write a message to the output file that the keyword is not found in the dictionary (see sample output below). Count the number of keywords not found. You will print this number at the end of the program.


Output Details

Number of keywords not found = ??   <= the number is between 20 and 30

Required file output

keyword not found: alignas
keyword not found: alignof
keyword not found: and_eq
keyword not found: asm
keyword not found: auto
keyword not found: bitand
keyword not found: bitor
keyword not found: char16_t
keyword not found: char32_t
keyword not found: compl
...


Additional Requirements

- You must include at least two additional functions:

- a sort function using either a bubble sort or an insertion sort

- a search function that looks for each keyword in the dictionary array. You may use a function that is similar to the one that was presented in class.

- Place the function definitions below main() and function prototypes above main().

Step by Step Solution

3.45 Rating (155 Votes )

There are 3 Steps involved in it

Step: 1

CODE include include include include using namespace std void sortstring int int binarysearchstring ... 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

Data Modeling and Database Design

Authors: Narayan S. Umanath, Richard W. Scammel

2nd edition

1285085256, 978-1285085258

Students also viewed these Programming questions

Question

Distinguish between the manifest and latent content of dreams.

Answered: 1 week ago