【问题标题】:How to traverse graph in boost use BFS如何在boost使用BFS中遍历图
【发布时间】:2013-01-06 09:24:54
【问题描述】:

我在编译一个非常简单的图形的 BFS 时遇到问题。无论我做什么,我都会收到关于不匹配的方法调用的各种编译器消息(我尝试过 boost::visitor 和扩展 boost::default_bfs_visitor 等)

#include <stdint.h>
#include <iostream>
#include <vector>
#include <boost/graph/adjacency_list.hpp>
#include <boost/graph/breadth_first_search.hpp>

int main() {
  typedef boost::adjacency_list<boost::vecS, boost::hash_setS, boost::undirectedS, uint32_t, uint32_t, boost::no_property> graph_t;
  graph_t graph(4);
  graph_t::vertex_descriptor a = boost::vertex(0, graph);
  graph_t::vertex_descriptor b = boost::vertex(1, graph);
  graph_t::vertex_descriptor c = boost::vertex(2, graph);
  graph_t::vertex_descriptor d = boost::vertex(3, graph);
  graph[a] = 0;
  graph[b] = 1;
  graph[c] = 2;
  graph[d] = 3;
  std::pair<graph_t::edge_descriptor, bool> result = boost::add_edge(a, b, 0, graph);
  result = boost::add_edge(a, c, 1, graph);
  result = boost::add_edge(c, b, 2, graph);
  class {
  public:
    void initialize_vertex(const graph_t::vertex_descriptor &s, graph_t &g) {
      std::cout << "Initialize: " << g[s] << std::endl;
    }
    void discover_vertex(const graph_t::vertex_descriptor &s, graph_t &g) {
      std::cout << "Discover: " << g[s] << std::endl;
    }
    void examine_vertex(const graph_t::vertex_descriptor &s, graph_t &g) {
      std::cout << "Examine vertex: " << g[s] << std::endl;
    }
    void examine_edge(const graph_t::edge_descriptor &e, graph_t &g) {
      std::cout << "Examine edge: " << g[e] << std::endl;
    }
    void tree_edge(const graph_t::edge_descriptor &e, graph_t &g) {
      std::cout << "Tree edge: " << g[e] << std::endl;
    }
    void non_tree_edge(const graph_t::edge_descriptor &e, graph_t &g) {
      std::cout << "Non-Tree edge: " << g[e] << std::endl;
    }
    void gray_target(const graph_t::edge_descriptor &e, graph_t &g) {
      std::cout << "Gray target: " << g[e] << std::endl;
    }
    void black_target(const graph_t::edge_descriptor &e, graph_t &g) {
      std::cout << "Black target: " << g[e] << std::endl;
    }
    void finish_vertex(const graph_t::vertex_descriptor &s, graph_t &g) {
      std::cout << "Finish vertex: " << g[s] << std::endl;
    }
  } bfs_visitor;
  boost::breadth_first_search(graph, a, bfs_visitor);
  return 0;
}

如何使用bfs_visitor访问图表?

PS。我已经看到并编译了"How to create a C++ Boost undirected graph and traverse it in depth first search (DFS) order?",但它没有帮助。

【问题讨论】:

    标签: c++ boost breadth-first-search boost-graph


    【解决方案1】:

    您可以看到here 的重载列表breadth_first_search。如果您不想指定需要使用命名参数版本的每个参数。它看起来像这样:

    breadth_first_search(graph, a, boost::visitor(bfs_visitor));
    

    如果您在图形定义中使用 vecS 作为 VertexList 存储,或者如果您已经构建并初始化了内部 vertex_index 属性映射,这将按原样工作。由于您使用的是hash_setS,因此您需要将调用更改为:

    breath_first_search(graph, a, boost::visitor(bfs_visitor).vertex_index_map(my_index_map));
    

    您已经在 uint32_t 捆绑属性中使用了索引映射。您可以使用get(boost::vertex_bundle, graph) 访问它。

    您的访问者也有问题。您应该从 boost::default_bfs_visitor 派生它,并且您的成员函数的 graph_t 参数需要是 const 限定的。

    完整代码:

    #include <stdint.h>
    #include <iostream>
    #include <vector>
    #include <boost/graph/adjacency_list.hpp>
    #include <boost/graph/breadth_first_search.hpp>
    
    typedef boost::adjacency_list<boost::vecS, boost::hash_setS, boost::undirectedS, uint32_t, uint32_t, boost::no_property> graph_t;
    
    
    struct my_visitor : boost::default_bfs_visitor{
    
        void initialize_vertex(const graph_t::vertex_descriptor &s, const graph_t &g) const {
          std::cout << "Initialize: " << g[s] << std::endl;
        }
        void discover_vertex(const graph_t::vertex_descriptor &s, const graph_t &g) const {
          std::cout << "Discover: " << g[s] << std::endl;
        }
        void examine_vertex(const graph_t::vertex_descriptor &s, const graph_t &g) const {
          std::cout << "Examine vertex: " << g[s] << std::endl;
        }
        void examine_edge(const graph_t::edge_descriptor &e, const graph_t &g) const {
          std::cout << "Examine edge: " << g[e] << std::endl;
        }
        void tree_edge(const graph_t::edge_descriptor &e, const graph_t &g) const {
          std::cout << "Tree edge: " << g[e] << std::endl;
        }
        void non_tree_edge(const graph_t::edge_descriptor &e, const graph_t &g) const {
          std::cout << "Non-Tree edge: " << g[e] << std::endl;
        }
        void gray_target(const graph_t::edge_descriptor &e, const graph_t &g) const {
          std::cout << "Gray target: " << g[e] << std::endl;
        }
        void black_target(const graph_t::edge_descriptor &e, const graph_t &g) const {
          std::cout << "Black target: " << g[e] << std::endl;
        }
        void finish_vertex(const graph_t::vertex_descriptor &s, const graph_t &g) const {
          std::cout << "Finish vertex: " << g[s] << std::endl;
        }
      };
    
    int main() {
      graph_t graph(4);
      graph_t::vertex_descriptor a = boost::vertex(0, graph);
      graph_t::vertex_descriptor b = boost::vertex(1, graph);
      graph_t::vertex_descriptor c = boost::vertex(2, graph);
      graph_t::vertex_descriptor d = boost::vertex(3, graph);
      graph[a] = 0;
      graph[b] = 1;
      graph[c] = 2;
      graph[d] = 3;
      std::pair<graph_t::edge_descriptor, bool> result = boost::add_edge(a, b, 0, graph);
      result = boost::add_edge(a, c, 1, graph);
      result = boost::add_edge(c, b, 2, graph);
    
      my_visitor vis;
    
      breadth_first_search(graph, a, boost::visitor(vis).vertex_index_map(get(boost::vertex_bundle,graph)));
      return 0;
    } 
    

    【讨论】:

    • 我无法让它与嵌套在方法中的类一起工作(我仍然收到关于模板实例化失败的奇怪编译器消息)。你知道可能是什么问题吗?
    • @MaciejPiechotka 正如在 c++11 之前 here 所解释的那样,您不能使用本地类型作为模板参数。 boost::visitor 返回一个结构,其参数的类型作为参数之一。使用 -std=c++11 使其适用于 g++ 4.8.0(尽管它仍然会在 clang 3.2 中失败)。
    【解决方案2】:

    我遇到了同样的问题,但与 user1252091 提供的答案相比,我的顶点类型是一个不包含可用于创建 vertex_index_map 的整数的结构,因此该行

    breadth_first_search(graph, a, boost::visitor(vis).vertex_index_map(get(boost::vertex_bundle,graph)));
    

    在我的情况下不起作用。最终我想出了如何创建一个外部 vertex_index_map(也感谢this answer)并将它传递给breadth_first_search 函数。这是一个可以帮助他人的工作示例:

    #include <boost/graph/adjacency_list.hpp>
    #include <boost/graph/visitors.hpp>
    #include <boost/graph/breadth_first_search.hpp>
    #include <iostream>
    
    struct Person
    {
        std::string Name;
        unsigned int YearBorn;
    };
    
    typedef boost::adjacency_list <boost::vecS, boost::hash_setS, boost::bidirectionalS, Person, boost::no_property > FamilyTree;
    typedef boost::graph_traits<FamilyTree>::vertex_descriptor  Vertex;
    typedef boost::graph_traits<FamilyTree>::edge_descriptor    Edge;
    
    template <class Graph>
    class BfsVisitor : public boost::default_bfs_visitor
    {
    public:
        typedef typename boost::graph_traits<Graph>::vertex_descriptor VertexDescriptor;
        typedef typename boost::graph_traits<Graph>::edge_descriptor   EdgeDescriptor;
    
        BfsVisitor(std::vector<VertexDescriptor>& nodesVisited)
        : m_nodesVisited(nodesVisited){}
    
        void tree_edge(EdgeDescriptor e, const Graph& g) const
        {
            VertexDescriptor u = source(e, g);
            VertexDescriptor v = target(e, g);
            m_nodesVisited.push_back(v);
        }
    
    private:
        std::vector<VertexDescriptor>& m_nodesVisited;
    };
    
    
    const Person Abe_Simpson        {"Abe_Simpson", 0};
    const Person Mona_Simpson       { "Mona_Simpson", 0};
    const Person Herb_Simpson       { "Herb_Simpson", 0};
    const Person Homer_Simpson      { "Homer_Simpson", 0};
    
    const Person Clancy_Bouvier     { "Clancy_Bouvier", 0};
    const Person Jacqueline_Bouvier { "Jacqueline_Bouvier", 0};
    const Person Marge_Bouvier      { "Marge_Bouvier", 0};
    const Person Patty_Bouvier      { "Patty_Bouvier", 0};
    const Person Selma_Bouvier      { "Selma_Bouvier", 0};
    
    const Person Bart_Simpson       { "Bart_Simpson", 0};
    const Person Lisa_Simpson       { "Lisa_Simpson", 0};
    const Person Maggie_Simpson     { "Maggie_Simpson", 0};
    const Person Ling_Bouvier       { "Ling_Bouvier", 0};
    
    
    
    
    
    int main(void)
    {
        std::cout << __FUNCTION__ << "\n";
    
        FamilyTree g;
    
    
        // nodes
        auto v_Abe_Simpson = boost::add_vertex(Abe_Simpson,g);
        auto v_Mona_Simpson = boost::add_vertex(Mona_Simpson,g);
        auto v_Herb_Simpson = boost::add_vertex(Herb_Simpson,g);
        auto v_Homer_Simpson = boost::add_vertex(Homer_Simpson,g);
    
        auto v_Clancy_Bouvier = boost::add_vertex(Clancy_Bouvier,g);
        auto v_Jacqueline_Bouvier = boost::add_vertex(Jacqueline_Bouvier,g);
        auto v_Marge_Bouvier = boost::add_vertex(Marge_Bouvier,g);
        auto v_Patty_Bouvier = boost::add_vertex(Patty_Bouvier,g);
        auto v_Selma_Bouvier = boost::add_vertex(Selma_Bouvier,g);
    
        auto v_Bart_Simpson = boost::add_vertex(Bart_Simpson,g);
        auto v_Lisa_Simpson = boost::add_vertex(Lisa_Simpson,g);
        auto v_Maggie_Simpson = boost::add_vertex(Maggie_Simpson,g);
        auto v_Ling_Bouvier = boost::add_vertex(Ling_Bouvier,g);
    
        // connections
        boost::add_edge(v_Abe_Simpson, v_Herb_Simpson, g);
        boost::add_edge(v_Abe_Simpson, v_Homer_Simpson, g);
        boost::add_edge(v_Mona_Simpson, v_Herb_Simpson, g);
        boost::add_edge(v_Mona_Simpson, v_Homer_Simpson, g);
    
        boost::add_edge(v_Clancy_Bouvier, v_Marge_Bouvier, g);
        boost::add_edge(v_Clancy_Bouvier, v_Patty_Bouvier, g);
        boost::add_edge(v_Clancy_Bouvier, v_Selma_Bouvier, g);
        boost::add_edge(v_Jacqueline_Bouvier, v_Marge_Bouvier, g);
        boost::add_edge(v_Jacqueline_Bouvier, v_Patty_Bouvier, g);
        boost::add_edge(v_Jacqueline_Bouvier, v_Selma_Bouvier, g);
    
        boost::add_edge(v_Homer_Simpson, v_Bart_Simpson, g);
        boost::add_edge(v_Homer_Simpson, v_Lisa_Simpson, g);
        boost::add_edge(v_Homer_Simpson, v_Maggie_Simpson, g);
        boost::add_edge(v_Marge_Bouvier, v_Bart_Simpson, g);
        boost::add_edge(v_Marge_Bouvier, v_Lisa_Simpson, g);
        boost::add_edge(v_Marge_Bouvier, v_Maggie_Simpson, g);
    
        boost::add_edge(v_Selma_Bouvier, v_Ling_Bouvier, g);
    
    
        typedef std::map<Vertex, size_t>IndexMap;
        IndexMap mapIndex;
        boost::associative_property_map<IndexMap> propmapIndex(mapIndex);
        size_t i=0;
        FamilyTree::vertex_iterator vi, vi_end;
        for (boost::tie(vi, vi_end) = boost::vertices(g); vi != vi_end; ++vi)
        {
            boost::put(propmapIndex, *vi, i++);
        }
    
    
        for (boost::tie(vi, vi_end) = boost::vertices(g); vi != vi_end; ++vi)
        {
            Vertex vParent = *vi;
    
            std::vector<Vertex> vertexDescriptors;
            BfsVisitor<FamilyTree> bfsVisitor(vertexDescriptors);
            breadth_first_search(g, vParent, visitor(bfsVisitor).vertex_index_map(propmapIndex));
    
    
            std::cout << "\nDecendants of " << g[vParent].Name << ":\n";
            for (auto v : vertexDescriptors)
            {   
                Person p = g[v];
                std::cout << p.Name << "\n";
            }   
        }
    
        getchar();
        return 0;
    }
    

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2012-04-28
      • 1970-01-01
      • 2011-07-31
      • 2022-08-17
      • 2023-03-06
      • 2021-08-23
      相关资源
      最近更新 更多