Я бы сделал что-то подобное, используя исключения, чтобы узнать, есть ли символ на карте или нет.Редактирование вашего кода:
#include<iostream>
#include<fstream>
#include<string>
#include<sstream>
#include<map>
#include<stdexcept>
using namespace std;
map<string, double> gerrymanderingRatios(string file) {
map<string, int> countMap;
map<string, double> gerryMap;
ifstream file_in(file);
if (file_in) {
string line, ignoreMe, ch;
int total = 0;
while (file_in >> ignoreMe, getline(file_in, line)) {
/* ignore first token and count instances of each
char in the line. */
stringstream ss(line);
while(ss >> ch) {
try {
countMap.at(ch)++;
} catch(const out_of_range& oor) {
countMap[ch] = 1;
}
total++;
}
}
file_in.close();
// print the final count for each element
map<string, int>::iterator it;
for (it = countMap.begin(); it != countMap.end(); it++ ) {
cout << it->first
<< ':'
<< it->second
<< endl;
}
/* calculate ratios for "political party" (char)
and insert into the map. */
//calculate ratios
for (it = countMap.begin(); it != countMap.end(); it++ ) {
gerryMap[it->first] = (double)it->second / total;
}
//print total ratios
cout << "ratios" << endl;
map<string, double>::iterator dit;
for (dit = gerryMap.begin(); dit != gerryMap.end(); dit++ ) {
cout << dit->first
<< ':'
<< dit->second
<< endl;
}
}
return gerryMap;
}
int main() {
map<string, double> ratiomap = gerrymanderingRatios("example.txt");
//do whatever you need with the ratios
return 0;
}
Соответствующая часть:
while(ss >> ch) {
try {
countMap.at(ch)++;
} catch(const out_of_range& oor) {
countMap[ch] = 1;
}
total++;
}
countMap.at(ch)
сгенерирует исключение out_of_range
, если ключ ch
отсутствует на карте.Так что я могу попытаться увеличить значение, но если выдается исключение, оно добавляется вместо счетчика 1. Обратите внимание, что я ввел map<string, int> countMap
, чтобы сохранить индивидуальные значения каждого ключа, используя целые числа, и использовал ваш * 1011.* в конце, когда я вычисляю отношения.