A std::map that keep track of the order of insertion?(跟踪插入顺序的 std::map ?)
问题描述
我目前有一个 std::map
将一个整数值存储到一个唯一的字符串标识符中,我确实使用该字符串进行查找.它主要做我想要的,除了它不跟踪插入顺序.因此,当我迭代地图以打印出值时,它们会根据字符串进行排序;但我希望它们按照(第一次)插入的顺序进行排序.
I currently have a std::map<std::string,int>
that stores an integer value to a unique string identifier, and I do look up with the string. It does mostly what I want, except that it does not keep track of the insertion order. So when I iterate the map to print out the values, they are sorted according to the string; but I want them to be sorted according to the order of (first) insertion.
我想过使用 vector
代替,但我需要查找字符串并将整数值增加大约 10,000,000 次,所以我不知道std::vector
是否会明显变慢.
I thought about using a vector<pair<string,int>>
instead, but I need to look up the string and increment the integer values about 10,000,000 times, so I don't know whether a std::vector
will be significantly slower.
有没有一种方法可以使用 std::map
或者是否有另一个更适合我需要的 std
容器?
Is there a way to use std::map
or is there another std
container that better suits my need?
我使用的是 GCC 3.4,我的 std::map
中的值可能不超过 50 对.
I'm on GCC 3.4, and I have probably no more than 50 pairs of values in my std::map
.
推荐答案
如果 std::map
中只有 50 个值,您可以将它们复制到 std::vector
> 在使用适当的函子通过 std::sort
打印和排序之前.
If you have only 50 values in std::map
you could copy them to std::vector
before printing out and sort via std::sort
using appropriate functor.
或者你可以使用 boost::multi_index.它允许使用多个索引.在您的情况下,它可能如下所示:
Or you could use boost::multi_index. It allows to use several indexes. In your case it could look like the following:
struct value_t {
string s;
int i;
};
struct string_tag {};
typedef multi_index_container<
value_t,
indexed_by<
random_access<>, // this index represents insertion order
hashed_unique< tag<string_tag>, member<value_t, string, &value_t::s> >
>
> values_t;
这篇关于跟踪插入顺序的 std::map ?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:跟踪插入顺序的 std::map ?
基础教程推荐
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- C++,'if' 表达式中的变量声明 2021-01-01
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 设计字符串本地化的最佳方法 2022-01-01