Question: Java - Design a program that reads in an ASCII text file (provided) and creates an output file that contains each unique character and the

Java - Design a program that reads in an ASCII text file (provided) and creates an output file that contains each unique character and the number of time the character appears in the file. Do not sort the output. Each unique character in the file must be represented by a character frequency class instance. For this exercise, the character frequency objects must be stored in a Linked List. Read the input file character-by-character. Reading the entire file into memory is prohibited. Needs to use CharacterFrequency class variables ch : char, frequency : int and methods +getCharacter() : char +setCharacter(character : char) +getFrequency() : int +setFrequency(frequency : int) +increment() +Equals() : bool +ToString() : string. Any help with Java code for this exercise would be appreciated.

For example, given the sample input file: Hello.

The output file would look like this: H(72) = 1

e(101) = 1

l(108) = 2

o(111) = 1

.(46) = 1

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!