Question
use c# visual studio Design a program that reads in an ASCII text file (provided) and creates an output file that contains each unique character
use c# visual studio
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.
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
Where the format of the file is the character followed by the characters ASCII value followed by the number of times the character occurred in the file. The program should be able to be executed from the command line using the following syntax: programname.exe
CharacterFrequency
-ch : char
-frequency : int
+getCharacter() : char
+setCharacter(character : char)
+getFrequency() : int
+setFrequency(frequency : int)
+increment()
+Equals() : bool
+ToString() : string
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