0

概述:我有一些代码遍历字符串列表(名称)以查找每个字符串的最后一个字符。我还有一个 myGraph typedef 映射,它接受一个结构作为值类型。该结构包含向量 nodeext 和向量 next_cnt。

要做的事情:每次在地图中插入新字符时,我都需要将向量 nextwt_vec 初始化为空向量。

问题:使用下面的代码,我的 nextwt_vec 保留了前一个字符的旧值。

    map<char, vector<int> > nextmap;


 for (myGraph::const_iterator j = graph.begin(); j != graph.end(); ++j)
 {
    vector<int> nextwt_vec;
    //populating next map with char and weighted ints
    for (int p=0; p< (int) (*j).second->nodenext.size(); ++p)
    {

        char cn = name[name.length() - 1];

        int wt = (*j).second->next_cnt[p];

        nextwt_vec.insert(nextwt_vec.begin()+p, wt);

        //puts char as key and weighted int as value in nextmap
        n->nextmap[cn] = nextwt_vec;

    }

输出:我得到什么:

char: A   vec: 109 
char: C   vec: 109 vec: 48

我应该得到的输出:

char: A   vec: 109
char: C   vec: 48

谢谢你的帮助!!

4

1 回答 1

0

删除向量 nextwt_vec; 来自函数的变量。直接使用 nextmap[cn]。替换这两行:

    nextwt_vec.insert(nextwt_vec.begin()+p, wt);

    //puts char as key and weighted int as value in nextmap
    n->nextmap[cn] = nextwt_vec;

有了这个:

    //puts char as key and weighted int as value in nextmap
    n->nextmap[cn].insert(nextwt_vec.begin()+p, wt);;
于 2012-10-10T23:54:19.407 回答