Question
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
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started