Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Part 1 A frequency table lists words and the number of times each word appears in a text file. Write a program that creates a

Part 1 A frequency table lists words and the number of times each word appears in a text file. Write a program that creates a frequency table for a file whose name is entered by the user. You may want to use the function ispunct(), in header file ctype.h, to check for punctuation so you can strip it off the end of a word. Use exceptions to handle file errors. Try to make a class to read and write files. Part 2 Write a function "PalindromeTester" that uses the reverse algorithm on a copy of a string, then compares the original and the reversed string to determine whether the original string is a palindrome or not. The string library provides functions like begin and end to obtain iterators that point to characters in a string. The function will allow strings to contain uppercase and lowercase letters and punctuations. Before testing if the original string is a palindrome, the function should eliminate any punctuation. For simplicity, assume the only punctuations characters can be the period ".", comma",", exclamation point "!", semicolon ";", apostrophe "'", and parenthesis "()". You need to use the copy_if algorithm and a back_inserter to make a copy of the original string. So the string "Madam, I'm Adam" is palindrome regardless of the case and the punctuation Please upload the following: The class .cpp file The main program The class .h file Output File

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

Concepts of Database Management

Authors: Philip J. Pratt, Joseph J. Adamski

7th edition

978-1111825911, 1111825912, 978-1133684374, 1133684378, 978-111182591

More Books

Students also viewed these Databases questions

Question

2. Why has the conflict escalated?

Answered: 1 week ago