
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN: 9780133594140
Author: James Kurose, Keith Ross
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Question
Help with c++... please paste indented code plzz and keep output same as given
![class WordPair{
public:
WordPair (String first, String second)
String getFirst()
String getSecond()
}
class WordPairList {
private:
Vector<WordPair> allPairs
public:
WordPairList (String[] words)
int numMatches ()
void display()
}
int main() {
String wordNums [3] = {"one", "two", "three"};
WordPairList exampleOne = new WordPairList (wordNums, 3);
exampleOne.display();
// print ("one", "two"), ("one", "three"), ("two", "three")
String phrase [4] = {"the", "more", "the", "merrier"};
WordPairList exampleTwo = new WordPairList (phrase, 4);
exampleTwo.display();
// print ("the", "more"), ("the", "the"), ("the", "merrier"),
// ("more", "the"), ("more", "merrier"), ("the", "merrier")
String moreWords [5] = {"the", "red", "fox", "the", "red"};
WordPairList exampleThree = new WordPairList (moreWords, 5);
cout<< exampleThree.numMatches () << endl; // print 2
exampleThree.display();
// print ("the", "red"), ("the", "fox"), ("the", "the"),
// ("the", "red"), ("red", "fox"), ("red", "the"),
// ("red", "red"), ("fox", "the"), ("fox", "red"),
// ("the", "red")
}](https://content.bartleby.com/qna-images/question/3ed45464-784a-45df-bdff-9eb55f3d2668/17b2c953-0a61-4d64-88ac-1f1d4ea18864/xq34ff5_thumbnail.jpeg)
Transcribed Image Text:class WordPair{
public:
WordPair (String first, String second)
String getFirst()
String getSecond()
}
class WordPairList {
private:
Vector<WordPair> allPairs
public:
WordPairList (String[] words)
int numMatches ()
void display()
}
int main() {
String wordNums [3] = {"one", "two", "three"};
WordPairList exampleOne = new WordPairList (wordNums, 3);
exampleOne.display();
// print ("one", "two"), ("one", "three"), ("two", "three")
String phrase [4] = {"the", "more", "the", "merrier"};
WordPairList exampleTwo = new WordPairList (phrase, 4);
exampleTwo.display();
// print ("the", "more"), ("the", "the"), ("the", "merrier"),
// ("more", "the"), ("more", "merrier"), ("the", "merrier")
String moreWords [5] = {"the", "red", "fox", "the", "red"};
WordPairList exampleThree = new WordPairList (moreWords, 5);
cout<< exampleThree.numMatches () << endl; // print 2
exampleThree.display();
// print ("the", "red"), ("the", "fox"), ("the", "the"),
// ("the", "red"), ("red", "fox"), ("red", "the"),
// ("red", "red"), ("fox", "the"), ("fox", "red"),
// ("the", "red")
}
![Q1: Write the WordPairList class. The constructor takes an array
of strings words as a parameter and initializes the instance
variable allPairs to an ArrayList of WordPair objects. A
WordPair object consists of a word from the array paired with a
word that appears later in the array.
The allPairs list contains WordPair objects (words[i], words [j])
for every i and j, where 0 < i < j < words.length. Each
WordPair object is added exactly once to the list. The following
examples illustrate two different WordPairList objects.
Example 1
String wordNums [3] = {"one", "two", "three"};
WordPairList exampleOne = new WordPairList (wordNums, 3);
After the code segment has executed, the allPairs instance variable of
exampleOne will contain the following WordPair objects in some order.
("one", "two"), ("one", "three"), ("two", "three")
Example 2
String phrase [4] = {"the", "more", "the", "merrier"};
WordPairList example Two = new WordPairList (phrase, 4);
After the code segment has executed, the allPairs instance variable of
example Two will contain the following WordPair objects in some order.
("the", "more"), ("the", "the"), ("the", "merrier"),
("more", "the"), ("more", "merrier"), ("the", "merrier")
Write the WordPairList method numMatches. This method returns the
number of WordPair objects in allPairs for which the two strings
match. For example, the following code segment creates a WordPairList
object.
String moreWords [5] = {"the", "red", "fox", "the", "red"};
WordPairList exampleThree = new WordPairList (moreWords, 5);
After the code segment has executed, the allPairs instance variable of
exampleThree will contain the following WordPair objects in some
order. The pairs in which the first string matches the second string
are shaded for illustration.
("the", "red"), ("the", "fox"), ("the", "the"),
("the", "red"), ("red", "fox"), ("red", "the"),
("red", "red"), ("fox", "the"), ("fox", "red"),
("the", "red")
The call exampleThree.numMatches () should return 2.
Class information for this question](https://content.bartleby.com/qna-images/question/3ed45464-784a-45df-bdff-9eb55f3d2668/17b2c953-0a61-4d64-88ac-1f1d4ea18864/3jom0ri_thumbnail.jpeg)
Transcribed Image Text:Q1: Write the WordPairList class. The constructor takes an array
of strings words as a parameter and initializes the instance
variable allPairs to an ArrayList of WordPair objects. A
WordPair object consists of a word from the array paired with a
word that appears later in the array.
The allPairs list contains WordPair objects (words[i], words [j])
for every i and j, where 0 < i < j < words.length. Each
WordPair object is added exactly once to the list. The following
examples illustrate two different WordPairList objects.
Example 1
String wordNums [3] = {"one", "two", "three"};
WordPairList exampleOne = new WordPairList (wordNums, 3);
After the code segment has executed, the allPairs instance variable of
exampleOne will contain the following WordPair objects in some order.
("one", "two"), ("one", "three"), ("two", "three")
Example 2
String phrase [4] = {"the", "more", "the", "merrier"};
WordPairList example Two = new WordPairList (phrase, 4);
After the code segment has executed, the allPairs instance variable of
example Two will contain the following WordPair objects in some order.
("the", "more"), ("the", "the"), ("the", "merrier"),
("more", "the"), ("more", "merrier"), ("the", "merrier")
Write the WordPairList method numMatches. This method returns the
number of WordPair objects in allPairs for which the two strings
match. For example, the following code segment creates a WordPairList
object.
String moreWords [5] = {"the", "red", "fox", "the", "red"};
WordPairList exampleThree = new WordPairList (moreWords, 5);
After the code segment has executed, the allPairs instance variable of
exampleThree will contain the following WordPair objects in some
order. The pairs in which the first string matches the second string
are shaded for illustration.
("the", "red"), ("the", "fox"), ("the", "the"),
("the", "red"), ("red", "fox"), ("red", "the"),
("red", "red"), ("fox", "the"), ("fox", "red"),
("the", "red")
The call exampleThree.numMatches () should return 2.
Class information for this question
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 2 steps with 1 images

Knowledge Booster
Similar questions
- Answer in c++arrow_forwardPlease use C programming. Please use fgets() instead of gets and complete using replit compiler. please add comments, and please make sure it is ordered from newest to oldest release yeararrow_forwardPlease use C++ and only use header<iostream>. Any others will not be accepted. Hint included from for assignment. Thank you!arrow_forward
- please code this for me in c++ using void, functions, loops, (basic c++ not complicated or highlevel please). I tried to code it myself but there are many mistakes I dont know how to fix so please write a similar one for me but it works. The question is only 1 but it has 2 parts (2 different functions that should be in one code) MY CODE: #include <iostream>using namespace std; int IsPalindrome(int p);void GCD(); int main (){ int choice; cout << "Please enter a choice: "<<endl; cout << "Enter one for IsPalindrome "<<endl; cout << "Enter 2 for GCD "<<endl; cout << "Enter 3 to exit the program "<<endl; cout << "Choice: "<<endl; cin >> choice; if (choice == 1) { int p; cout << "Please enter a 3 digit number: "<<endl; cin >> p; if(p%10==p/100) { cout<<p<<" is a palindrome " <<endl; } else {…arrow_forwardWrite a C++ program that will print out the following simple shapes: triangle, rectangle and diamond using different characters for each shape. Requirements:- each shape uses a different character and it must be exactly 5 lines.- for this exercise, please do not use loop but only simple printing characters.arrow_forwardWhat is wrong with the following code? When ran, the code is supposed to generate a mad-lib for the user to fill in. However, when ran, the program encounters an error. the language used is C++ istrname is instructor name and studnamef and studnamel are the first and last name of a student repesectfullly. and rotfood is a rotten food. The output for the mad lib is completely up to the user.arrow_forward
- Can you please help me write the code in C++? It needs to be exactly wrote like the example in black. Also, if you can include a random number generator between [1,9] for the Matrixes then, that would be great. Note: Use DO-WHILE loop to verify user input for scale factor.arrow_forwardList two features we used from the C++ standard library, including a short explanation of why you would use the feature and which header file must be included. Example: The std::cin object is found in the iostream header file and is used to read characters from the keyboard.arrow_forwardWrite a program in C++ that should calculate the insurnace for a house. use questions below to write your programm. what is your first? what last name? how many people are living in the houes? how much did you bought the house for? how many bedrom does it have? what is the lenght in squre feet? - use Loop so everyone can repeat the programm. use function like "viod" and any other function. and finally use this formula: X/150*y/*50 x is the total price of the house y is the number of bedrooms s is the lenght in square feet.arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Computer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Concepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningPrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY

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 Engineering
ISBN:9780124077263
Author:David A. Patterson, John L. Hennessy
Publisher:Elsevier Science

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
Computer Engineering
ISBN:9781337093422
Author:Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:9780133750423
Author:VENIT, Stewart
Publisher:Pearson Education

Sc Business Data Communications and Networking, T...
Computer Engineering
ISBN:9781119368830
Author:FITZGERALD
Publisher:WILEY