Write a C++ program that reads in a text file, counts how many times each word occurs in the file,..
Write a C++ program that reads in a text file, counts how many times each word occurs in the file, outputs the words, and counts the word in increasing order of occurrence, the counts need to be output in sorted order rare words first. A word is any sequence of alphanumeric characters. Whitespace and punctuation marks are to be discarded. Punctuation marks should not be counted either as a part of the word or as a separate word. File name is supplied on command line. The following classes must be used: class WordOccurrence { public: WordOccurrence(const string& word=””, int num=0); bool matchWord(const string &); // returns true if word matches stored void increment(); // increments number of occurrences string getWord() const; int getNum() const; private: string word_; int num_; }; class WordList{ public: // add copy constructor, destructor, overloaded assignment // implement comparison as friend friend bool equal(const WordList&, const WordList&); void addWord(const string &); void print(); private: WordOccurrence *wordArray_; // a dynamically allocated array of WordOccurrences int size_; }; Using vectors is not allowed. You may use standard sorting algorithms or implement insertion sort from scratch. For the second class (WordList), implement a copy constructor (implementing deep copy), destructor and an overloaded assignment (either classical or copy-and-swap). May 13 2022 07:28 PM
Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.
You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.
Read moreEach paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.
Read moreThanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.
Read moreYour email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.
Read moreBy sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.
Read more