Question
part B We want to calculate all kinds of data related to texts. To do this, given any alphabetic text ( say, book or article
We want to calculate all kinds of data related to texts. To do this, given any alphabetic text (say, book or article), we must create a data structure that stores the words that appear in it. The number of words in the text, the number of different words in the text, the most common word, the number of words that begin with a certain letter (say 'A').
To do this we define a class that represents the group of words in the text. There is no need to keep the order of the words as they appear in the text.
The class will represent the group of words in the most efficient manner - a list sorted in order of dictionaries.
You must use a class called Node
Part A - class Node
The Node
1. String word
2. Node
You must write the constructors and methods required for use in the Node
The class names in the class will be:
getNext(), getWord(), setNext(Node
Part B - class TextList
You must write the TextList
The TextList
In addition, write to the class with the following methods, in the most efficient way possible! public void addToData (String word)
Which accepts a word that is read from the text and adds it to the data structure. It can be assumed that the word parameter contains a valid word with letters only. Remember that you have to keep the list sorted in order of dictionaries and therefore put it in the appropriate place. You can use the String compareTo method of string comparison.
public void parseTextIntoList (String text)
Which accepts as a parameter a string that represents text (that is, only words with a single space between each word) and adds the words to the list (each word separately and in its dictionaries). You can assume that the input is valid, meaning only words with lowercase letters, no punctuation or other marks, and there is a single space between each word. Use the code you've already written and do not duplicate code.
public int howManyWords ()
returns the number of words in the text. Write this as a recursive method.
public int howManyDifferentWords ()
returns the number of different words in the text. (Hint: the list is sorted).
public int howManyStarting (char letter)
takes a character and returns the number of words that begins with this character.
public String mostFrequentWord ()
returns the most occurring word in the text.(Hint: the list is sorted)
public String toString()
Passes the list to a string, between each word will be a single space. Note that since the words are entered in a sorted order, the order received here will be different from the order in which the words were inserted!
public void addToList(TextList
A method that adds all of the words in the list received as a parameter to the current list. It can be assumed that the list received is also sorted. And that the list is legal (contains words according to the known rules). Do not use the addToData method. The numbered lists must already be merged into one sorted list as in the merge filter.
Part C - class WordProcessor
Write a class WordProcessor that contains a GUI with text field to enter the text and a bottom for each method.
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