1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224
|
#include <iomanip>
#include <istream>
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
// Function to test for Empty file
void peekFile(ifstream &fin)
{
char empty;
// To check if the file is empty
empty=fin.peek();
if(empty = fin.eof())
cout << "No data exists" << endl;
}
// To Print Heading
void print_heading(ifstream &fin)
{
//Formatting for Heading
cout << "Letter " << '\t' << "Count " << '\t'<< "Frequency " << endl;
cout << setw(6) << setfill('=') << '=' <<'\t' <<
setw(5) << setfill ('=') << '=' << '\t' << setw(9)
<< setfill('=') << '=' << endl;
// Function incase file is empty
peekFile(fin);
}
//Function to remove non - alpha
void onlyAlpha(string& str1)
{
string newStr1 ;
newStr1.reserve(str1.size());
for(string::size_type i = 0; i < str1.size(); i++)
{
if ( isalpha( str1[i] ) )
newStr1.push_back( str1[i] );
}
str1 = newStr1;
}
//To fill array of strings
void fillString(ifstream &fin, string inputarray[], const int size)
{
// Loop to fill input array
for(int i = 0; size > i; i++)
{
fin >> inputarray[i];
}
}
// Function to sort array of strings
void selectionSort(string list[], int size)
{
int i = 0, j = 0, smallest = 0;
string temp ;
for(i = 0; i < size -1; i++)
{
smallest = i;
for(j = i + 1; j < size; j++)
{
if(list[j] < list[smallest])
smallest = j;
}
//swap
temp = list[smallest];
list[smallest] = list [i];
list [i] = temp;
}
}
//Function to fill array with only the words
void onlyWords(string str1[], const int isize, int& countWord)
{
//Loop to pass string at index i to onlyAlpha function
for(string::size_type i = 0; i < isize; i++)
{
onlyAlpha(str1[i]);
if(str1[i].size()>0)
countWord++;
}
}
//Function to fill frequency array
void fillFrequency(string str1, int freqcount[], const int alphabet)
{
for(string::size_type i = 0; i < str1.size(); i++)
{
str1[i] = toupper(str1[i]);
++(freqcount[str1[i] - 'A']);
}
}
//Function to display the highest frequency
int highestFreq(int freqcount[], const int alphabet)
{
int highestfreq = 0;
for(int i = 0; i < alphabet; i ++)
{
if(freqcount[i] > highestfreq)
{
highestfreq = freqcount[i];
}
}
return highestfreq;
}
// Function to format and print
void printResults(int freqcount[], const int alphabet)
{
for (int i = 0; i < alphabet; i++)
{
if (freqcount[i] > 0)
{
cout <<' ' << char('A' + i) << setfill(' ')<<setw(9)
<< freqcount[i] << setw(6);
for (int j = 0; j < 2 * freqcount[i]; j++)
{
cout << '*';
}
cout << endl;
}
}
cout << '\n' << endl;
}
//Function to print words ten to a line
void printTen(string inputarray[],const int size, int wordtotal)
{
cout << "The file sorted alphabetically: " << endl;
// This is the problem code below.
//I'm just trying to print 10 words then break the line
int counter = 0;
for(int i = 0 ; i < size; i++)
{
counter ++;
if( counter % 10 !=0 )
{
cout << inputarray[i] << ' ';
}
if(counter % 10 == 0)
{
cout << inputarray[i] << endl;
}
}
}
void main()
{
ifstream fin;
fin.open("mp6input.txt");
int wordCount = 0;
int letterCount = 0;
int highfreq = 0;
const int size = 100;
string inputarray[size];
const int alphabet = 26;
int freqcount[alphabet] = {0};
// to print heading
print_heading(fin);
// to fill string array
fillString(fin, inputarray, size);
// To sort array
selectionSort(inputarray, size);
//Only words function
onlyWords(inputarray, size, wordCount);
// This loop gives words to fillfreqency function from inputarray
for( string::size_type i = 0; i < size; i++)
{
fillFrequency( inputarray[i], freqcount, alphabet);
}
// Prints the table
printResults(freqcount, alphabet);
//Loop to total letters
for( int i = 0; i < alphabet ; i++)
{
letterCount += freqcount[i];
}
//Displays the number of words
cout << "This file has " << wordCount << " words and "
<< letterCount <<" letters. " << endl;
// To display the highest frequency
highfreq = highestFreq(freqcount, alphabet);
cout << "The highest frequency is " << highfreq
<< "." <<'\n' << endl;
// Print the words 10 to a line
printTen(inputarray, size, wordCount);
system("pause");
}
|