Here is a C++ class definition for an abstract data type WordTree of string objects. You must store the words and the counts of the words in a single binary search tree. Each word occurring in the text can only be stored once in the tree. Implement each member function in the class below. The WordTree class may have only one member variable, root, and it must be private. You may add additional private members functions to the WordTree class. Some of the functions we may have already done in lecture, that's fine, try to do those first without looking at your notes. Remember to provide an appropriate copy constructor, destructor and assignment operator for the WordTree class as well. #include #include typedef std::string WordType; struct WordNode { WordType m_data; WordNode *m_left; WordNode *m_right; // You may add additional data members and member functions // in WordNode }; class WordTree { private: WordNode *root; public: // default constructor WordTree() : root(nullptr) { }; // copy constructor WordTree(const WordTree& rhs); // assignment operator const WordTree& operator=(const WordTree& rhs); // Inserts v into the WordTree void add(WordType v); // Returns the number of distinct words / nodes int distinctWords() const; // Returns the total number of words inserted, including // duplicate values int totalWords() const; // Prints the LinkedList friend ostream& operator<<(std::ostream &out, const WordTree& rhs); // Destroys all the dynamically allocated memory in the // tree ~WordTree(); }; The add function enables a client to insert elements into the WordTree. If an element has already been added, repeated calls to add will not add a new WordNode. Instead the count of the occurrences of that word will increase. WordTree k; k.add("Kim"); k.add("Kanye"); k.add("Kanye"); k.add("Kanye"); assert(k.distinctWords() == 2); assert(k.totalWords() == 4); The output operator << enables a client to print elements of a WordTree. The key and the number of occurrences of the key are printed. The output should be sorted according to the key. WordTree w; w.add("Harry"); w.add("Niall"); w.add("Niall"); w.add("Liam"); w.add("Louis"); w.add("Harry"); w.add("Niall"); w.add("Zayn"); cout << w; must write (including the order) Harry 2 Liam 1 Louis 1 Niall 3 Zayn 1 For the output operator in a class, you must overload it. You must also implement it as a non-member friend function. When comparing items, just use the == or != operators provided for the string type by the library. These do case-sensitive comparisons. In other words, the The THE will count as different words for this assignment, that's fine.

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

I NEED HELP WITH THE FUNCTION THAT PRINTS THE LINKED LIST AND THE ASSINGNMENT OPERATOR FUNTION ONLY

Here is a C++ class definition for an abstract data type WordTree of string objects. You must store the words and the counts of the words in a single binary search tree. Each word occurring in the text can only be stored once in the tree. Implement each member function in the class below. The WordTree class may have only one member variable, root, and it must be private. You may add additional private members functions to the WordTree class. Some of the functions we may have already done in lecture, that's fine, try to do those first without looking at your notes. Remember to provide an appropriate copy constructor, destructor and assignment operator for the WordTree class as well.

#include <iostream> #include <string> typedef std::string WordType; struct WordNode { WordType m_data; WordNode *m_left; WordNode *m_right; // You may add additional data members and member functions // in WordNode

};

class WordTree { private: WordNode *root; public: // default constructor WordTree() : root(nullptr) { }; // copy constructor WordTree(const WordTree& rhs);

// assignment operator
const WordTree& operator=(const WordTree& rhs);

// Inserts v into the WordTree void add(WordType v); // Returns the number of distinct words / nodes int distinctWords() const; // Returns the total number of words inserted, including // duplicate values int totalWords() const; // Prints the LinkedList friend ostream& operator<<(std::ostream &out, const WordTree& rhs);

// Destroys all the dynamically allocated memory in the // tree
~WordTree();

};

The add function enables a client to insert elements into the WordTree. If an element has already been added, repeated calls to add will not add a new WordNode. Instead the count of the occurrences of that word will increase.

WordTree k;

k.add("Kim"); k.add("Kanye"); k.add("Kanye"); k.add("Kanye");

assert(k.distinctWords() == 2); assert(k.totalWords() == 4);

The output operator << enables a client to print elements of a WordTree. The key and the number of occurrences of the key are printed. The output should be sorted according to the key.

WordTree w;

w.add("Harry"); w.add("Niall"); w.add("Niall"); w.add("Liam"); w.add("Louis"); w.add("Harry"); w.add("Niall"); w.add("Zayn");

cout << w;

must write (including the order)

Harry 2 Liam 1 Louis 1 Niall 3 Zayn 1

For the output operator in a class, you must overload it. You must also implement it as a non-member friend function.

When comparing items, just use the == or != operators provided for the string type by the library. These do case-sensitive comparisons. In other words, the The THE will count as different words for this assignment, that's fine.

Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Follow-up Questions
Read through expert solutions to related follow-up questions below.
Follow-up Question

On line 3 of your second solution, you wrote

function<void>(WordNode*)>traverseAndprint = [&](WordNode * node)

The part in bold, is that supposed to be the helper function? Or is that just part of the general syntax?

Solution
Bartleby Expert
SEE SOLUTION
Knowledge Booster
Types of trees
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-engineering and related others by exploring similar questions and additional content below.
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