Can you do 1 and 2 please? (C++ language) 1- Please implement the Word Counting program that is shown in the pictures attached. 2- Also in the same program count the number of words longer than 3 letters.

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Can you do 1 and 2 please? (C++ language)

1- Please implement the Word Counting program that is shown in the pictures attached.

2- Also in the same program count the number of words longer than 3 letters.

The code for the Word Counter program (part 3)
while (infile >> word) (
string new word = "";
for (char : word) {
}
}
MURACH BOOKS
}
if (c == '.' || c == ',') {
continue;
} else if (isupper (c)) (
new_word += tolower (c); // convert to lowercase
else {
}
new word += c;
}
infile.close();
words.push_back (new_word);
}
return words;
}
The code for the Word Counter program (part 4)
map<string, int> get_word_count (const vector<string>& words) {
map<string, int> word_count ();
for (string word words) {
auto search = word_count.find(word);
if (search == word_count.end()) {
word_count [word] = 1;
// remove punctuation
Murach's C++ Programming
// add word
}
return word_count;
} else {
word_count [word] += 1; // found increment count
// for word
// not found - add word
// with count of 1
C10, Side 71
Transcribed Image Text:The code for the Word Counter program (part 3) while (infile >> word) ( string new word = ""; for (char : word) { } } MURACH BOOKS } if (c == '.' || c == ',') { continue; } else if (isupper (c)) ( new_word += tolower (c); // convert to lowercase else { } new word += c; } infile.close(); words.push_back (new_word); } return words; } The code for the Word Counter program (part 4) map<string, int> get_word_count (const vector<string>& words) { map<string, int> word_count (); for (string word words) { auto search = word_count.find(word); if (search == word_count.end()) { word_count [word] = 1; // remove punctuation Murach's C++ Programming // add word } return word_count; } else { word_count [word] += 1; // found increment count // for word // not found - add word // with count of 1 C10, Side 71
The code for the Word Counter program (part 1)
#include <iostream>
#include <fstream>
#include <string>
#include <vector>
#include <map>
using namespace std;
vector<string> load_words (string filename);
map<string, int> get_word_count (const vector<string>& words);
int main() {
cout << "The Word Counter program\n\n";
string filename = "dickens.txt";
auto words = load_words (filename);
}
cout << words.size() << WORDS: ";
for (string word words) {
cout << word <<
}
cout << endl << endl;
auto word_count = get_word_count (words);
MURACH BOOKS
The code for the Word Counter program (part 2)
cout << word_count.size() << " UNIQUE WORDS: ";
for (auto pair
word_count) {
cout << pair.first << ' ';
}
cout << endl << endl;
cout << "COUNT PER WORD: ";
for (auto pair
cout << pair.first << ¹=¹ << pair.second << ¹;
Murach's C++ Programming
}
cout << endl << endl;
if (infile) (
word_count) (
vector<string> load_words (string filename) {
vector<string> words;
ifstream infile (filename);
string word;
C10, 560
Transcribed Image Text:The code for the Word Counter program (part 1) #include <iostream> #include <fstream> #include <string> #include <vector> #include <map> using namespace std; vector<string> load_words (string filename); map<string, int> get_word_count (const vector<string>& words); int main() { cout << "The Word Counter program\n\n"; string filename = "dickens.txt"; auto words = load_words (filename); } cout << words.size() << WORDS: "; for (string word words) { cout << word << } cout << endl << endl; auto word_count = get_word_count (words); MURACH BOOKS The code for the Word Counter program (part 2) cout << word_count.size() << " UNIQUE WORDS: "; for (auto pair word_count) { cout << pair.first << ' '; } cout << endl << endl; cout << "COUNT PER WORD: "; for (auto pair cout << pair.first << ¹=¹ << pair.second << ¹; Murach's C++ Programming } cout << endl << endl; if (infile) ( word_count) ( vector<string> load_words (string filename) { vector<string> words; ifstream infile (filename); string word; C10, 560
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 5 images

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY