Как построить adjacency_list из краевых итераторов в библиотеке графов повышения? - PullRequest
0 голосов
/ 03 мая 2018

У меня есть вопрос, связанный с библиотекой графов наддува.

boost::adajacency_list имеет конструктор из диапазона итераторов ребер и количества вершин.

template <class EdgeIterator>
adjacency_list(EdgeIterator first, EdgeIterator last,
               vertices_size_type n, 
               edges_size_type m = 0, 
               const GraphProperty& p = GraphProperty())

Я пытаюсь использовать этот конструктор со следующим кодом,

#include <boost/graph/adjacency_list.hpp>

using namespace boost;
using Graph = adjacency_list<>;

int main()
{
  using edge_iterator = graph_traits<Graph>::edge_iterator;

  Graph g;
  auto const vd0 = add_vertex(g);
  auto const vd1 = add_vertex(g);
  add_edge(vd0, vd1, g);

  edge_iterator ei, ej;
  tie(ei, ej) = edges(g);

  Graph h(ei, ej, 2);
  return 0;
}

Код не компилируется со следующей ошибкой,

/usr/include/boost/graph/detail/adjacency_list.hpp:2121:29: error: ‘boost::detail::adj_list_edge_iterator<boost::range_detail::integer_iterator<long unsigned int>, boost::detail::out_edge_iter<__gnu_cxx::__normal_iterator<boost::detail::stored_edge_property<long unsigned int, boost::no_property>*, std::vector<boost::detail::stored_edge_property<long unsigned int, boost::no_property>, std::allocator<boost::detail::stored_edge_property<long unsigned int, boost::no_property> > > >, long unsigned int, boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, long int>, boost::adjacency_list<> >::value_type {aka class boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>}’ has no member named ‘first’
           add_edge((*first).first, (*first).second,
                    ~~~~~~~~~^~~~~
/usr/include/boost/graph/detail/adjacency_list.hpp:2121:45: error: ‘boost::detail::adj_list_edge_iterator<boost::range_detail::integer_iterator<long unsigned int>, boost::detail::out_edge_iter<__gnu_cxx::__normal_iterator<boost::detail::stored_edge_property<long unsigned int, boost::no_property>*, std::vector<boost::detail::stored_edge_property<long unsigned int, boost::no_property>, std::allocator<boost::detail::stored_edge_property<long unsigned int, boost::no_property> > > >, long unsigned int, boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>, long int>, boost::adjacency_list<> >::value_type {aka class boost::detail::edge_desc_impl<boost::directed_tag, long unsigned int>}’ has no member named ‘second’
           add_edge((*first).first, (*first).second,

Ссылка : https://www.boost.org/doc/libs/1_37_0/libs/graph/doc/adjacency_list.html

1 Ответ

0 голосов
/ 03 мая 2018

Если вы просто хотели получить копию, как у вас в образце:

Graph h = g;

Или, если g другого типа: copy_graph ¹

Ваш подход:

std::vector<std::pair<Graph::vertex_descriptor, Graph::vertex_descriptor> > pairlist;
for (auto ed : boost::make_iterator_range(edges(g))) {
    pairlist.emplace_back(source(ed, g), target(ed, g));
}

Graph h(pairlist.begin(), pairlist.end(), 2);

¹ см. Также скопировать график (adjacency_list) в другой

Демонстрационная версия

Показаны все упомянутые подходы:

Live On Coliru

#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/copy.hpp>

using namespace boost;
using Graph = adjacency_list<>;

int main() {
    Graph g;
    add_edge(add_vertex(g), add_vertex(g), g);

    std::vector<std::pair<Graph::vertex_descriptor, Graph::vertex_descriptor> > pairlist;
    for (auto ed : boost::make_iterator_range(edges(g))) {
        pairlist.emplace_back(source(ed, g), target(ed, g));
    }

    Graph h(pairlist.begin(), pairlist.end(), num_vertices(g));
    Graph i = h;
    Graph j;
    boost::copy_graph(h, j);
}
...