0

所以基本上我的程序所做的就是读入一个单词的数据流,并计算每个单词的出现次数,以及唯一单词的总数。它会将它们读入地图。我的程序运行良好,除了一个问题...当我调用 时p.print(),for 的值total仍然为 0。似乎存在一些问题,在 for_each 语句中增加了 total,但是当我 p.print 时,它的行为就像是从不增加...我的打印功能定义如下:

void print_words(const map<string,int> &aMap) {
    PRN p(aMap.size());
    for_each(aMap.begin(), aMap.end(), p);
    p.print();
}

我有一个负责处理每个单词的类,这是定义:

//CLASS PRN FUNCTIONS
// constructor
PRN::PRN(const int& s, const int& c, const int& t) {
    sz=s;
    cnt=c;
    total=t;
}

// overloaded operator, where P is defined as
// typedef pair < string, int > P;
void PRN::operator()(const P& p) {
    if(cnt%NO_ITEMS == 0 && cnt != 0)
        cout << '\n';
    cout << setw(ITEM_W) << left << p.first << " : " << setw(NO_W) << left << p.second;
    total += p.second;
    cnt++;
}

// to printout final value of total                                                             
void PRN::print() const {
    cout << '\n' << '\n';
    cout << "no of words in input stream  : " << total << endl;
    cout << "no of words in output stream : " << sz << endl;
}
4

1 回答 1

0

想通了...我需要

p = for_each(aMap.begin(), aMap.end(), p);

没有比找出自己的问题更好的感觉了!

于 2013-09-26T00:38:31.830 回答