How to retrieve all keys (or values) from a std::map and put them into a vector?(如何从 std::map 检索所有键(或值)并将它们放入向量中?)
问题描述
这是我出来的可能方式之一:
This is one of the possible ways I come out:
struct RetrieveKey
{
template <typename T>
typename T::first_type operator()(T keyValuePair) const
{
return keyValuePair.first;
}
};
map<int, int> m;
vector<int> keys;
// Retrieve all keys
transform(m.begin(), m.end(), back_inserter(keys), RetrieveKey());
// Dump all keys
copy(keys.begin(), keys.end(), ostream_iterator<int>(cout, "
"));
当然,我们也可以通过定义另一个函子RetrieveValues来从地图中检索所有值.
Of course, we can also retrieve all values from the map by defining another functor RetrieveValues.
有没有其他方法可以轻松实现这一目标?(我一直想知道为什么 std::map 不包含一个成员函数让我们这样做.)
Is there any other way to achieve this easily? (I'm always wondering why std::map does not include a member function for us to do so.)
推荐答案
虽然您的解决方案应该有效,但可能难以阅读,这取决于您的程序员同事的技能水平.此外,它将功能从呼叫站点移开.这会使维护变得更加困难.
While your solution should work, it can be difficult to read depending on the skill level of your fellow programmers. Additionally, it moves functionality away from the call site. Which can make maintenance a little more difficult.
我不确定您的目标是将密钥放入向量中还是将它们打印出来进行 cout,所以我两者都在做.你可以试试这样的:
I'm not sure if your goal is to get the keys into a vector or print them to cout so I'm doing both. You may try something like this:
std::map<int, int> m;
std::vector<int> key, value;
for(std::map<int,int>::iterator it = m.begin(); it != m.end(); ++it) {
key.push_back(it->first);
value.push_back(it->second);
std::cout << "Key: " << it->first << std::endl();
std::cout << "Value: " << it->second << std::endl();
}
或者更简单,如果您使用的是 Boost:
Or even simpler, if you are using Boost:
map<int,int> m;
pair<int,int> me; // what a map<int, int> is made of
vector<int> v;
BOOST_FOREACH(me, m) {
v.push_back(me.first);
cout << me.first << "
";
}
就我个人而言,我喜欢 BOOST_FOREACH 版本,因为输入较少,而且它的作用非常明确.
Personally, I like the BOOST_FOREACH version because there is less typing and it is very explicit about what it is doing.
这篇关于如何从 std::map 检索所有键(或值)并将它们放入向量中?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何从 std::map 检索所有键(或值)并将它们放入向


基础教程推荐
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 设计字符串本地化的最佳方法 2022-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01