微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何按 BGL 中捆绑的属性提供的顺序遍历顶点和边? 更新使用 Boost PFR 生成代码

如何解决如何按 BGL 中捆绑的属性提供的顺序遍历顶点和边? 更新使用 Boost PFR 生成代码

我有一些提升图

#include <boost/graph/adjacency_list.hpp>

struct Vertex {
    double property_1;
    int property_2;
};

using Graph_t = boost::adjacency_list<boost::listS,boost::listS,boost::undirectedS,Vertex,boost::no_property>;
Graph_t g(5);

现在想以不同的顺序遍历顶点,比如:

  1. 通过它的id
  2. 随机顺序
  3. 下降 property_2
  4. 上升 property_1
  5. 以通用方式按更多捆绑属性降序/升序。

如何以最有效的方式执行此操作?

截至目前,我创建了具有属性std::vector 和包含索引的向量,并按属性对它们进行排序。但是,如果您有许多属性会创建大量可以避免的结构。

我还查看了 boost::multi_index 地图,就像在 this cplusplus.com question 中一样,但这对我来说似乎也不小。

我该怎么做?对任何提示都很满意!

解决方法

Boost.MultiIndex 可以以一种相当复杂、未记录的方式插入:

Live Coliru Demo

#include <boost/graph/adjacency_list.hpp>
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/random_access_index.hpp>
#include <boost/multi_index/ordered_index.hpp>

struct mic_tag:
  /* it is assumed first index is random-access */
  virtual public boost::graph_detail::random_access_container_tag,virtual public boost::graph_detail::back_insertion_sequence_tag{};

namespace boost{

template<typename... Args>
mic_tag container_category(boost::multi_index_container<Args...>&){return {};}

}

template<typename GraphType,typename KeyExtractor>
struct vertex_adapted
{
  using result_type=typename KeyExtractor::result_type;
        
  decltype(auto) operator()(void* p)const
  {
    return key(
      static_cast<typename GraphType::stored_vertex*>(p)->m_property);
  }
  
  KeyExtractor key;
};

struct vertex_t
{
  double property_1;
  int    property_2;
};

struct graph_t;
struct graph_t_vertex_list;

namespace boost{
    
template<typename Value>
struct container_gen<graph_t_vertex_list,Value>
{
  using type=boost::multi_index_container<
    Value,boost::multi_index::indexed_by<
      boost::multi_index::random_access<>,boost::multi_index::ordered_non_unique<
        vertex_adapted<
          graph_t,boost::multi_index::member<vertex_t,double,&vertex_t::property_1>
        >
      >,int,&vertex_t::property_2>
        >,std::greater<int>
      >
    >
  >;
};

}

struct graph_t:
boost::adjacency_list<
  boost::listS,graph_t_vertex_list,boost::undirectedS,vertex_t
>{};

/* testing */

#include <iostream>

std::ostream& operator<<(std::ostream& os,const vertex_t& v)
{
  os<<"{"<<v.property_1<<","<<v.property_2<<"}";
  return os;
}
  
int main()
{
  graph_t g;
  add_vertex(vertex_t{0.0,0},g);
  add_vertex(vertex_t{0.1,1},g);
  add_vertex(vertex_t{0.2,2},g);
  
  for(void* p:g.m_vertices.get<1>()){
    std::cout<<static_cast<graph_t::stored_vertex*>(p)->m_property;
  }
  std::cout<<"\n";

  for(void* p:g.m_vertices.get<2>()){
    std::cout<<static_cast<graph_t::stored_vertex*>(p)->m_property;
  }
  std::cout<<"\n";
}

输出

{0,0}{0.1,1}{0.2,2}
{0.2,2}{0.1,1}{0,0}

4 月 14 日更新:我重构了一些东西,以便生成的用户代码更加简单:

struct vertex_t
{
  double property_1;
  int    property_2;
};

using graph_t= boost::adjacency_list<
  boost::listS,mic_listS<
    boost::multi_index::ordered_non_unique<
      boost::multi_index::member<vertex_t,&vertex_t::property_1>
    >,boost::multi_index::ordered_non_unique<
      boost::multi_index::member<vertex_t,&vertex_t::property_2>,std::greater<int>
    >
  >,vertex_t
>;

完整代码如下:

Live Coliru Demo

#include <boost/graph/adjacency_list.hpp>
#include <boost/multi_index_container.hpp>
#include <boost/multi_index/random_access_index.hpp>

template<typename KeyExtractor>
struct mic_list_key_extractor
{
  using result_type=typename KeyExtractor::result_type;
        
  template<typename StoredVertex>
  decltype(auto) operator()(StoredVertex& v)const{return key(v.m_property);}
  
  KeyExtractor key;
};

template<typename IndexSpecifier,typename=void>
struct mic_list_index_specifier{using type=IndexSpecifier;};

template<
  template<typename...> class IndexSpecifier,typename Arg1,typename Arg2,typename... Args
>
struct mic_list_index_specifier<
  IndexSpecifier<Arg1,Arg2,Args...>,std::void_t<typename IndexSpecifier<Arg1,Args...>::key_from_value_type>>
{
  static constexpr bool has_tag=boost::multi_index::detail::is_tag<Arg1>::value;
  using arg1=std::conditional_t<has_tag,Arg1,mic_list_key_extractor<Arg1>>;
  using arg2=std::conditional_t<has_tag,mic_list_key_extractor<Arg2>,Arg2>;
  using type=IndexSpecifier<arg1,arg2,Args...>;
};

template<typename IndexSpecifier>
using mic_list_index_specifier_t=
  typename mic_list_index_specifier<IndexSpecifier>::type;

template<typename Value,typename... IndexSpecifiers>
struct mic_list:boost::multi_index_container<
  Value,boost::multi_index::indexed_by<
    boost::multi_index::random_access<>,mic_list_index_specifier_t<IndexSpecifiers>...
  >
>
{};

template<typename... IndexSpecifiers>
struct mic_listS;

struct mic_list_tag:
  virtual public boost::graph_detail::random_access_container_tag,virtual public boost::graph_detail::back_insertion_sequence_tag{};

namespace boost{

template<typename... Args>
mic_list_tag container_category(const mic_list<Args...>&){return {};}

template<typename Value,typename... IndexSpecifiers>
struct container_gen<mic_listS<IndexSpecifiers...>,Value>
{
  using type=mic_list<Value,IndexSpecifiers...>;
};

namespace detail
{

template<typename... IndexSpecifiers>
struct is_random_access<mic_listS<IndexSpecifiers...>>
{
  static constexpr bool value=true;
  using type=boost::mpl::true_;
};

}
}

/* testing */

#include <boost/multi_index/ordered_index.hpp>
#include <iostream>

struct vertex_t
{
  double property_1;
  int    property_2;
};

using graph_t= boost::adjacency_list<
  boost::listS,vertex_t
>;

std::ostream& operator<<(std::ostream& os,g);
  
  for(const auto& v:g.m_vertices.get<1>()){
    std::cout<<v.m_property;
  }
  std::cout<<"\n";

  for(const auto& v:g.m_vertices.get<2>()){
    std::cout<<v.m_property;
  }
  std::cout<<"\n";
}

输出

{0,0}
,

这(显然)不是图书馆的特色。

然而,您可以使用范围或范围适配器,就像在任何其他情况下一样:

Live On Coliru

#include <boost/graph/adjacency_list.hpp>
#include <boost/range/adaptors.hpp>
#include <boost/range/algorithm.hpp>
#include <boost/range/algorithm_ext.hpp>
#include <fmt/ranges.h>
#include <fmt/ostream.h>
#include <random>

struct Vertex {
    double property_1;
    int property_2;
};

static inline std::ostream& operator<<(std::ostream& os,Vertex const& v) {
    return os << "V(" << v.property_1 << "," << v.property_2 << ")";
}

using Graph_t =
    boost::adjacency_list<boost::listS,boost::listS,Vertex,boost::no_property>;

int main() {
    using boost::make_iterator_range;
    using namespace boost::adaptors;

    Graph_t g(5);

    int i = 0;
    for (auto& v : make_iterator_range(vertices(g))) {
        ++i;
        g[v] = {i / -.3,i * 11};
    }

    auto get_bundle = [&g](auto v) -> auto& { return g[v]; };

    fmt::print("Natural order: {}\n",make_iterator_range(vertices(g)));
    fmt::print("Natural order: {}\n",make_iterator_range(vertices(g) | transformed(get_bundle)));
    fmt::print(
        "Reverse natural order: {}\n",make_iterator_range(vertices(g) | transformed(get_bundle) | reversed));

    auto make_view = [=](auto range) {
        return std::vector<std::reference_wrapper<Vertex>>(
            begin(range),end(range));
    };

    auto view =
        make_view(make_iterator_range(vertices(g) | transformed(get_bundle)));
    boost::reverse(view);

    fmt::print("view: {}\n",view);

    boost::reverse(view);
    fmt::print("reversed: {}\n",view);

    auto less_by = [](auto member) {
        return [=,prj = std::mem_fn(member)](auto const& a,auto const& b) {
            return prj(a) < prj(b);
        };
    };
    boost::sort(view,less_by(&Vertex::property_1));
    fmt::print("less_by property_1: {}\n",view);

    boost::sort(view,less_by(&Vertex::property_2));
    fmt::print("less_by property_2: {}\n",view);

    {
        static std::random_device rd;
        static std::mt19937 randgen{rd()};

        std::shuffle(view.begin(),view.end(),randgen);
        fmt::print("random order: {}\n",view);
    }

    // just a loop is also fine,of course
    i = 0;
    for (Vertex& bundle : view) {
        bundle.property_2 = i++;
    }
    fmt::print("modified: {}\n",view);
}

印刷品

Natural order: {0x1467eb0,0x1467f10,0x1467f70,0x1467fd0,0x1468030}
Natural order: {V(-3.33333,11),V(-6.66667,22),V(-10,33),V(-13.3333,44),V(-16.6667,55)}
Reverse natural order: {V(-16.6667,55),V(-3.33333,11)}
view: {V(-16.6667,11)}
reversed: {V(-3.33333,55)}
less_by property_1: {V(-16.6667,11)}
less_by property_2: {V(-3.33333,55)}
random order: {V(-13.3333,55)}
modified: {V(-13.3333,0),1),2),3),4)}

更多,从这里

更新使用 Boost PFR 生成代码

作为对评论的回应,您可以使用 Boost PFR 静态生成一个带有比较器简单类型的数组:

template <typename T,typename Op = std::less<> >
constexpr static inline auto make_field_comparers(Op op = {}) {
    namespace pfr = boost::pfr;
    auto constexpr N = pfr::tuple_size<T>::value;
    using A = std::array<std::function<bool(T const&,T const&)>,N>;

    auto lift = [op](auto prj) {
        return [=](T const& a,T const& b) { return op(prj(a),prj(b)); };
    };

    return [lift]<size_t... I>(std::index_sequence<I...>){
        return A{lift([](T const& v) { return pfr::get<I>(v); })...};
    }
    (std::make_index_sequence<N>{});
}

你可以像Live On Compiler Explorer

那样使用
std::vector orderings {
    std::pair { "asc",make_field_comparers<Vertex>() },std::pair { "desc",make_field_comparers<Vertex>(std::greater<>{}) },};

for (auto const& [dir,fields] : orderings) {
    for (size_t field = 0; field < fields.size(); ++field) {
        boost::sort(view,fields[field]);
        fmt::print("by field #{} {}: {}\n",field,dir,view);
    }
}

打印

by field #0 asc: {V(-16.6667,11)}
by field #1 asc: {V(-3.33333,55)}
by field #0 desc: {V(-3.33333,55)}
by field #1 desc: {V(-16.6667,11)}

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。