String manipulation enables interesting approaches to analyzing the writings of great authors. Much attention has been focused

Question:

String manipulation enables interesting approaches to analyzing the writings of great authors. Much attention has been focused on whether William Shakespeare ever lived.

Some scholars believe there’s substantial evidence indicating that Christopher Marlowe actually penned the masterpieces attributed to Shakespeare. Researchers have used computers to find similarities in the writings of these two authors. This exercise examines three methods for analyzing texts with a computer.

a) Write an application that reads a line of text from the keyboard and prints a table indicating the number of occurrences of each letter of the alphabet in the text. For example,

the phrase To be, or not to be: that is the question:

contains one “a,” two “b’s,” no “c’s,” and so on.

b) Write an application that reads a line of text and prints a table indicating the number of one-letter words, two-letter words, three-letter words, and so on, appearing in the text. For example, Fig.14.25 shows the counts for the phrase Whether 'tis nobler in the mind to suffer

c) Write an application that reads a line of text and prints a table indicating the number of occurrences of each different word in the text. The application should include the words in the table in the same order in which they appear in the text. For example, the lines To be, or not to be: that is the question:

Whether 'tis nobler in the mind to suffer contain the word “to” three times, the word “be” two times, the word “or” once, etc.

Fig.14.25

Word length 1 2 3 4 5 6 7 Occurrences 0 821 NON- 2 (including 'tis) 2 1

Fantastic news! We've Found the answer you've been seeking!

Step by Step Answer:

Related Book For  book-img-for-question

Java How To Program Late Objects Version

ISBN: 9780136123712

8th Edition

Authors: Paul Deitel, Deitel & Associates

Question Posted: