Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

C# CSCI312: Character Counter - Vector Design a program that reads in an ASCII text file (provided) and creates an output file that contains each

C# CSCI312: Character Counter - Vector Design a program that reads in an ASCII text file (provided) and creates an output file that contains each unique ASCII 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 vector. 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 The program should be able to be executed from the command line using the following syntax: programname.exe (optional for this assignment). For example, counter.exe myInput.txt Count.txt Where counter.exe is the program name, myInput.txt is the input ASCII file, and the Count.txt is the output file. The character frequency class must implement the essence of the object described in the UML diagram below. Note that methods described in the UML diagram below are not absolute and may be changed as desired as long as the basic functionality is preserved. CharacterFrequency -ch : char -frequency : int +getCharacter() : char +setCharacter(in character : char) +getFrequency() : int +setFrequency(in frequency : int) +increment() +Equals() : bool +ToString() : string AY 2017-2018 DM The solutions will be graded on three components: design, development (code), and testing. Design is weighted 20% of the total grade, development is weighted 60% of the total grade, and testing is weighted 20% of the total grade. You may use C++, C#, or Java to implement this program as long as the following requirements are met. C# projects must be created in Visual Studio

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database And Expert Systems Applications 24th International Conference Dexa 2013 Prague Czech Republic August 2013 Proceedings Part 1 Lncs 8055

Authors: Hendrik Decker ,Lenka Lhotska ,Sebastian Link ,Josef Basl ,A Min Tjoa

2013 Edition

3642402844, 978-3642402845

More Books

Students also viewed these Databases questions

Question

Describe the factors influencing of performance appraisal.

Answered: 1 week ago