将地图值复制到 STL 中的向量 [英] Copy map values to vector in STL

查看:21
本文介绍了将地图值复制到 STL 中的向量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

目前正在通过有效的 STL 工作.第 5 项建议使用范围成员函数通常比使用它们的单元素对应物更可取.我目前希望将地图中的所有值(即 - 我不需要键)复制到向量.

Working my way through Effective STL at the moment. Item 5 suggests that it's usually preferable to use range member functions to their single element counterparts. I currently wish to copy all the values in a map (i.e. - I don't need the keys) to a vector.

最干净的方法是什么?

推荐答案

在这里你不能轻易地使用范围,因为你从 map 中得到的迭代器指的是一个 std::pair,你将用来插入的迭代器into a vector 是指存储在向量中的类型的对象,它是(如果您丢弃键)不是一对.

You can't easily use a range here because the iterator you get from a map refers to a std::pair, where the iterators you would use to insert into a vector refers to an object of the type stored in the vector, which is (if you are discarding the key) not a pair.

我真的不认为它比显而易见的更干净:

I really don't think it gets much cleaner than the obvious:

#include <map>
#include <vector>
#include <string>
using namespace std;

int main() {
    typedef map <string, int> MapType;
    MapType m;  
    vector <int> v;

    // populate map somehow

    for( MapType::iterator it = m.begin(); it != m.end(); ++it ) {
        v.push_back( it->second );
    }
}

如果我要多次使用它,我可能会将其重写为模板函数.比如:

which I would probably re-write as a template function if I was going to use it more than once. Something like:

template <typename M, typename V> 
void MapToVec( const  M & m, V & v ) {
    for( typename M::const_iterator it = m.begin(); it != m.end(); ++it ) {
        v.push_back( it->second );
    }
}

这篇关于将地图值复制到 STL 中的向量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆