我有一个数据结构,
<Book title>, <Author>, and <rate>
由于可以复制书名或作者,我想构建一个复合键。 (假设我不能制作额外的唯一密钥,例如ID)
由于数据非常庞大,我为了速度而使用GCC unordered_map, 我建立了这样的结构:
typedef pair<string, string> keys_t
typedef unordered_map<keys_t, double> map_t;
一般来说一切正常, 但是,当我想引用一个特定的密钥时,就会出现问题。
例如,假设我想在名为“数学”的书中找到评价最高的书,或者我想找到“托尔斯泰”书籍的平均费率。
在这种情况下,这变得非常麻烦,因为我不仅只能引用其中一个密钥对。
我碰巧找到boost::multi_index
,但我在理解这些文件方面遇到了一些麻烦。
有没有人对此有一些想法或指导?
制作多个索引的解决方案,multi_index的简洁示例,任何其他方法等等。任何帮助将不胜感激。
谢谢。
答案 0 :(得分:3)
我想出了如何使用boost::multi_index
我提到了这段代码:Boost multi_index composite keys using MEM_FUN
这是我的代码供你参考。
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/mem_fun.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/composite_key.hpp>
#include <boost/multi_index/member.hpp>
#include <iostream>
#include <string>
using namespace boost::multi_index;
using namespace std;
class Book {
public:
Book(const string &lang1, const string &lang2, const double &value) : m_lang1(lang1) , m_lang2(lang2) , m_value(value) {}
friend std::ostream& operator << (ostream& os,const Book& n) {
os << n.m_lang1 << " " << n.m_lang2 << " " << n.m_value << endl;
return os;
}
const string &lang1() const { return m_lang1; }
const string &lang2() const { return m_lang2; }
const double &value() const { return m_value; }
private:
string m_lang1, m_lang2;
double m_value;
};
// These will be Tag names
struct lang1 {};
struct lang2 {};
struct value {};
typedef multi_index_container <
Book,
indexed_by<
ordered_non_unique<tag<lang1>, BOOST_MULTI_INDEX_CONST_MEM_FUN( Book, const string &, lang1)
>,
ordered_non_unique<tag<lang2>, BOOST_MULTI_INDEX_CONST_MEM_FUN(Book, const string &, lang2)
>,
ordered_non_unique<tag<value>, BOOST_MULTI_INDEX_CONST_MEM_FUN(Book, const double &, value), greater<double>
>,
ordered_unique<
// make as a composite key with Title and Author
composite_key<
Book,
BOOST_MULTI_INDEX_CONST_MEM_FUN(Book, const string &, lang1),
BOOST_MULTI_INDEX_CONST_MEM_FUN(Book, const string &, lang2)
>
>
>
> Book_set;
// Indices for iterators
typedef Book_set::index<lang1>::type Book_set_by_lang1;
typedef Book_set::index<lang2>::type Book_set_by_lang2;
typedef Book_set::index<value>::type Book_set_by_value;
int main() {
Book_set books;
books.insert(Book("Math", "shawn", 4.3));
books.insert(Book("Math", "john", 4.2));
books.insert(Book("Math2", "abel", 3.8));
books.insert(Book("Novel1", "Tolstoy", 5.0));
books.insert(Book("Novel1", "Tolstoy", 4.8)); // This will not be inserted(duplicated)
books.insert(Book("Novel2", "Tolstoy", 4.2));
books.insert(Book("Novel3", "Tolstoy", 4.4));
books.insert(Book("Math", "abel", 2.5));
books.insert(Book("Math2", "Tolstoy", 3.0));
cout << "SORTED BY TITLE" << endl;
for (Book_set_by_lang1::iterator itf = books.get<lang1>().begin(); itf != books.get<lang1>().end(); ++itf)
cout << *itf;
cout << endl<<"SORTED BY AUTHOR" << endl;
for (Book_set_by_lang2::iterator itm = books.get<lang2>().begin(); itm != books.get<lang2>().end(); ++itm)
cout << *itm;
cout << endl<<"SORTED BY RATING" << endl;
for (Book_set_by_value::iterator itl = books.get<value>().begin(); itl != books.get<value>().end(); ++itl)
cout << *itl;
// Want to see Tolstoy's books? (in descending order of rating)
cout << endl;
Book_set_by_lang2::iterator mitchells = books.get<lang2>().find("Tolstoy");
while (mitchells->lang2() == "Tolstoy")
cout << *mitchells++;
return 0;
}
感谢所有发表评论的人!
答案 1 :(得分:1)
我在类似案例中所做的是使用一个容器来容纳
对象和单独的std::multiset<ObjectType const*, CmpType>
每个可能的指数;插入时,我会做push_back
,然后恢复
来自back()
的地址,并将其插入每个std::set
。
(std::unordered_set
和std::unordered_multiset
会更好
你的情况:在我的情况下,订单不仅重要,而且我没有
可以使用unordered_set
访问最近的编译器。)
请注意,这假设对象在进入后是不可变的 容器。如果你要改变其中一个,你可能应该 从所有集合中提取它,进行修改,然后重新插入。
这也假设主容器类型永远不会失效
指针和对象的引用;就我而言,我知道最大值
预先确定尺寸,因此我可以reserve()
并使用std::vector
。
如果做不到这一点,您可以使用std::deque
,或者只使用std::map
对于主要(完整)密钥。
即使这样也需要访问密钥中的完整元素。不是 从你的帖子中明确这是否足够 - “书籍标题 数学“让我觉得你可能需要一个子串搜索 标题(并且应该“托尔斯泰”匹配“狮子座 托尔斯泰”?)。如果要匹配任意子字符串,也可以 你的multiset将非常非常大(因为你将插入所有可能的 子串作为条目),或者你将进行线性搜索。 (很长一段时间 运行系统的条目没有变化,这可能是值得的 妥协:第一次子串时进行线性搜索 请求,但将结果缓存在multiset中,以便下次, 你可以快速找到它们。很可能人们会经常使用 相同的子串,例如任何一本书的“数学” 标题中的“数学”。)
答案 2 :(得分:0)
有一篇关于同一主题的文章: http://marknelson.us/2011/09/03/hash-functions-for-c-unordered-containers/
作者马克·尼尔森试图做类似的事情:“使用一个简单的类或结构来保存这个人的名字”,基本上他正在使用一对作为键(就像你一样)用于他的unordered_map:
typedef pair<string,string> Name;
int main(int argc, char* argv[])
{
unordered_map<Name,int> ids;
ids[Name("Mark", "Nelson")] = 40561;
ids[Name("Andrew","Binstock")] = 40562;
for ( auto ii = ids.begin() ; ii != ids.end() ; ii++ )
cout << ii->first.first
<< " "
<< ii->first.second
<< " : "
<< ii->second
<< endl;
return 0;
}
他意识到unordered_map不知道如何为std :: pair的给定密钥类型创建哈希。 因此,他演示了4种创建哈希函数的方法,以便在unordered_map中使用。
答案 3 :(得分:-1)
如果是不经常的操作,您可以搜索该值。
for(auto& p : m)
{
if(p.second.name==name_to_find)
{
//you now have the element
}
}
然而,如果地图很大,这将是有问题的,因为它将是一个线性过程而不是O(log n),这是一个问题,因为地图本质上很慢。