Я использую boost :: multi_index_container для обеспечения произвольного доступа и доступа на основе хэшей к коллекции элементов.Я хотел изменить индекс произвольного доступа элемента, не изменяя основанный на хэше индекс.
Вот фрагмент кода:
# include <string>
# include <boost/multi_index_container.hpp>
# include <boost/multi_index/random_access_index.hpp>
# include <boost/multi_index/hashed_index.hpp>
# include <boost/multi_index/member.hpp>
using namespace std ;
using namespace boost ;
using namespace boost::multi_index ;
// class representing my elements
class Element
{
public :
Element(const string & new_key) : key(new_key) {}
string key ; // the hash-based index in the multi_index_container
// ... many stuff skipped
private :
// ... many stuff skipped
} ;
typedef multi_index_container<
Element,
indexed_by<
random_access< >,
hashed_unique<
member<Element, string, &Element::key>
>
>
> ElementContainer ;
typedef ElementContainer::nth_index<0>::type::iterator ElementRandomIter ;
typedef ElementContainer::nth_index<1>::type::iterator ElementHashedIter ;
int main(int, char*[])
{
ElementContainer ec ;
// insert some elements
ec.push_back(Element("Alice")) ; // random-access index = 0
ec.push_back(Element("Bob")) ; // random-access index = 1
ec.push_back(Element("Carl")) ; // random-access index = 2
ec.push_back(Element("Denis")) ; // random-access index = 3
// Here I want to move "Denis" to position 1
// The (bad looking) solution I found involves removing and inserting the element
ElementRandomIter it = ec.get<0>().begin() + 3 ;
Element e = *(it) ; // store a copy
ec.get<0>().erase(it) ; // remove the element
it = ec.get<0>().begin() + 1 ;
ec.get<0>().insert(it, e) ; // insert the copy
// Elements are now in the following order
// random-access index 0 : Alice
// random-access index 1 : Denis
// random-access index 2 : Bob
// random-access index 3 : Carl
return 0 ;
}
Я знаю, что даже если бы я использовал толькоВ этом примере для итераторов с произвольным доступом для манипулирования элементами хеширование происходит за кулисами как минимум дважды в multi_index_container
, в дополнение к копированию объекта, что может быть дорогостоящим.
Есть ли способ изменитьиндекс произвольного доступа элемента внутри boost::multi_index
, не требуя дорогого уродства удаления и вставки при сохранении копии?
Я искал в документации multi_index_container
, возможно, я пропустилчто-то.Спасибо за любой совет!
Примечание: Извините за возможные ошибки в английском языке:)