connected_components.hpp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107
  1. //
  2. //=======================================================================
  3. // Copyright 1997-2001 University of Notre Dame.
  4. // Authors: Andrew Lumsdaine, Lie-Quan Lee, Jeremy G. Siek
  5. //
  6. // Distributed under the Boost Software License, Version 1.0. (See
  7. // accompanying file LICENSE_1_0.txt or copy at
  8. // http://www.boost.org/LICENSE_1_0.txt)
  9. //=======================================================================
  10. //
  11. #ifndef BOOST_GRAPH_CONNECTED_COMPONENTS_HPP
  12. #define BOOST_GRAPH_CONNECTED_COMPONENTS_HPP
  13. #include <boost/config.hpp>
  14. #include <boost/graph/depth_first_search.hpp>
  15. #include <boost/graph/properties.hpp>
  16. #include <boost/graph/graph_concepts.hpp>
  17. #include <boost/graph/overloading.hpp>
  18. #include <boost/static_assert.hpp>
  19. #include <boost/concept/assert.hpp>
  20. namespace boost {
  21. namespace detail {
  22. // This visitor is used both in the connected_components algorithm
  23. // and in the kosaraju strong components algorithm during the
  24. // second DFS traversal.
  25. template <class ComponentsMap>
  26. class components_recorder : public dfs_visitor<>
  27. {
  28. typedef typename property_traits<ComponentsMap>::value_type comp_type;
  29. public:
  30. components_recorder(ComponentsMap c,
  31. comp_type& c_count)
  32. : m_component(c), m_count(c_count) {}
  33. template <class Vertex, class Graph>
  34. void start_vertex(Vertex, Graph&) {
  35. if (m_count == (std::numeric_limits<comp_type>::max)())
  36. m_count = 0; // start counting components at zero
  37. else
  38. ++m_count;
  39. }
  40. template <class Vertex, class Graph>
  41. void discover_vertex(Vertex u, Graph&) {
  42. put(m_component, u, m_count);
  43. }
  44. protected:
  45. ComponentsMap m_component;
  46. comp_type& m_count;
  47. };
  48. } // namespace detail
  49. // This function computes the connected components of an undirected
  50. // graph using a single application of depth first search.
  51. template <class Graph, class ComponentMap, class P, class T, class R>
  52. inline typename property_traits<ComponentMap>::value_type
  53. connected_components(const Graph& g, ComponentMap c,
  54. const bgl_named_params<P, T, R>& params
  55. BOOST_GRAPH_ENABLE_IF_MODELS_PARM(Graph, vertex_list_graph_tag))
  56. {
  57. if (num_vertices(g) == 0) return 0;
  58. typedef typename graph_traits<Graph>::vertex_descriptor Vertex;
  59. BOOST_CONCEPT_ASSERT(( WritablePropertyMapConcept<ComponentMap, Vertex> ));
  60. typedef typename boost::graph_traits<Graph>::directed_category directed;
  61. BOOST_STATIC_ASSERT((boost::is_same<directed, undirected_tag>::value));
  62. typedef typename property_traits<ComponentMap>::value_type comp_type;
  63. // c_count initialized to "nil" (with nil represented by (max)())
  64. comp_type c_count((std::numeric_limits<comp_type>::max)());
  65. detail::components_recorder<ComponentMap> vis(c, c_count);
  66. depth_first_search(g, params.visitor(vis));
  67. return c_count + 1;
  68. }
  69. template <class Graph, class ComponentMap>
  70. inline typename property_traits<ComponentMap>::value_type
  71. connected_components(const Graph& g, ComponentMap c
  72. BOOST_GRAPH_ENABLE_IF_MODELS_PARM(Graph, vertex_list_graph_tag))
  73. {
  74. if (num_vertices(g) == 0) return 0;
  75. typedef typename graph_traits<Graph>::vertex_descriptor Vertex;
  76. BOOST_CONCEPT_ASSERT(( WritablePropertyMapConcept<ComponentMap, Vertex> ));
  77. // typedef typename boost::graph_traits<Graph>::directed_category directed;
  78. // BOOST_STATIC_ASSERT((boost::is_same<directed, undirected_tag>::value));
  79. typedef typename property_traits<ComponentMap>::value_type comp_type;
  80. // c_count initialized to "nil" (with nil represented by (max)())
  81. comp_type c_count((std::numeric_limits<comp_type>::max)());
  82. detail::components_recorder<ComponentMap> vis(c, c_count);
  83. depth_first_search(g, visitor(vis));
  84. return c_count + 1;
  85. }
  86. } // namespace boost
  87. #ifdef BOOST_GRAPH_USE_MPI
  88. # include <boost/graph/distributed/connected_components.hpp>
  89. #endif
  90. #endif // BOOST_GRAPH_CONNECTED_COMPONENTS_HPP