многоиндексный контейнер для повышения доступа без итератора - PullRequest
1 голос
/ 27 марта 2012

извините, если это новый вопрос, пожалуйста, укажите следующий код:

#include <boost/multi_index_container.hpp>
#include <boost/multi_index/identity.hpp>
#include <boost/multi_index/ordered_index.hpp>
#include <boost/multi_index/sequenced_index.hpp>
#include <boost/tokenizer.hpp>
#include <algorithm>
#include <iomanip>
#include <iostream>
#include <iterator>
#include <string>

using boost::multi_index_container;
using namespace boost::multi_index;


typedef multi_index_container<
  std::string,
  indexed_by<
    sequenced<>,
    ordered_non_unique<identity<std::string> >
  >
> text_container;


typedef boost::tokenizer<boost::char_separator<char> > text_tokenizer;

int main()
{
  std::string text=
    "Alice was getting very tired of sitting by her sister";

  text_container tc;
  text_tokenizer tok(text,boost::char_separator<char>(" \t\n.,;:!?'\"-"));
  std::copy(tok.begin(),tok.end(),std::back_inserter(tc));
  int i=0;
  for(text_container::iterator bb=tc.begin();bb!=tc.end();bb++,i++)
//    std::cout << *bb << std::endl;
      std::cout << tc[i] << std::endl;
  return 0;
}

Я хотел бы получить доступ, например, к 10-му элементу в контейнере. мне все еще нужно использовать итератор? или нет доступа к определенному упорядоченному элементу в виде массива (или любым другим способом ... пожалуйста, предложите) Ценю твою помощь Вахид

1 Ответ

1 голос
/ 27 марта 2012

Вы можете указать индекс произвольного доступа для мультииндекса, изменив строку sequenced<>, на random_access<>, (вам потребуется #include <boost/multi_index/random_access_index.hpp>). Это позволит вам удалить итератор в цикле for.

Подробнее см. в документации .

...