如何使用向量作为值类型在地图中添加值?

时间:2012-10-10 23:30:33

标签: c++ stl map vector

概述:我有一些代码遍历字符串列表(名称)以查找每个字符串的最后一个字符。我还有一个myGraph typedef map,它将struct作为值类型。该结构包含vector nodenext和vector next_cnt。

要做:每次在地图中插入新的字符时,我需要将vector 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

感谢您的帮助!!

1 个答案:

答案 0 :(得分:0)

drop vector 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);;