// Copyright W.P. McNeill 2010. // Distributed under the Boost Software License, Version 1.0. // (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #include #include #include #include #include #include #include #include #include #include /* This file defines a simple example of a read-only implicit weighted graph built using the Boost Graph Library. It can be used as a starting point for developers creating their own implicit graphs. The graph models the following concepts: Graph IncidenceGraph BidirectionalGraph AdjacencyGraph VertexListGraph EdgeListGraph AdjacencyMatrix ReadablePropertyGraph The graph defined here is a ring graph, a graph whose vertices are arranged in a ring so that each vertex has exactly two neighbors. For example, here is a ring graph with five nodes. 0 / \ 4 1 | | 3 ---- 2 The edges of this graph are undirected and each has a weight that is a function of its position in the graph. The vertices indexed are by integer and arranged sequentially so that each vertex i is adjacent to i-1 for i>0 and i+1 for i This tells Boost to associate the edges of the ring graph with the edge weight map. Along with these classes, the graph concepts are modeled by various valid expression functions defined below. This example also defines a get(boost::vertex_index_t, const ring_graph&) function which isn't part of a graph concept, but is used for Dijkstra search. Apart from graph, client code should not instantiate the model classes directly. Instead it should access them and their properties via graph_traits<...> and property_traits<...> lookups. For convenience, this example defines short names for all these properties that client code can use. */ // Forward declarations class ring_graph; class ring_incident_edge_iterator; class ring_adjacency_iterator; class ring_edge_iterator; struct edge_weight_map; // ReadablePropertyGraph associated types namespace boost { template<> struct property_map< ring_graph, edge_weight_t > { typedef edge_weight_map type; typedef edge_weight_map const_type; }; template<> struct property_map< const ring_graph, edge_weight_t > { typedef edge_weight_map type; typedef edge_weight_map const_type; }; } // Tag values that specify the traversal type in graph::traversal_category. struct ring_traversal_catetory: virtual public boost::bidirectional_graph_tag, virtual public boost::adjacency_graph_tag, virtual public boost::vertex_list_graph_tag, virtual public boost::edge_list_graph_tag {}; /* Undirected graph of vertices arranged in a ring shape. Vertices are indexed by integer, and edges connect vertices with consecutive indices. Vertex 0 is also adjacent to the vertex n-1. */ class ring_graph { public: // Graph associated types typedef std::size_t vertex_descriptor; typedef boost::undirected_tag directed_category; typedef boost::disallow_parallel_edge_tag edge_parallel_category; typedef ring_traversal_catetory traversal_category; // IncidenceGraph associated types typedef std::pair edge_descriptor; typedef ring_incident_edge_iterator out_edge_iterator; typedef std::size_t degree_size_type; // BidirectionalGraph associated types // Note that undirected graphs make no distinction between in- and out- // edges. typedef ring_incident_edge_iterator in_edge_iterator; // AdjacencyGraph associated types typedef ring_adjacency_iterator adjacency_iterator; // VertexListGraph associated types typedef boost::counting_iterator vertex_iterator; typedef std::size_t vertices_size_type; // EdgeListGraph associated types typedef ring_edge_iterator edge_iterator; typedef std::size_t edges_size_type; // This type is not part of a graph concept, but is used to return the // default vertex index map used by the Dijkstra search algorithm. typedef vertex_descriptor vertex_property_type; ring_graph(std::size_t n):m_n(n) {}; std::size_t n() const {return m_n;} private: // The number of vertices in the graph. std::size_t m_n; }; // Use these graph_traits parameterizations to refer to the associated // graph types. typedef boost::graph_traits::vertex_descriptor vertex_descriptor; typedef boost::graph_traits::edge_descriptor edge_descriptor; typedef boost::graph_traits::out_edge_iterator out_edge_iterator; typedef boost::graph_traits::in_edge_iterator in_edge_iterator; typedef boost::graph_traits::adjacency_iterator adjacency_iterator; typedef boost::graph_traits::degree_size_type degree_size_type; typedef boost::graph_traits::vertex_iterator vertex_iterator; typedef boost::graph_traits::vertices_size_type vertices_size_type; typedef boost::graph_traits::edge_iterator edge_iterator; typedef boost::graph_traits::edges_size_type edges_size_type; // Tag values passed to an iterator constructor to specify whether it should // be created at the start or the end of its range. struct iterator_position {}; struct iterator_start:virtual public iterator_position {}; struct iterator_end:virtual public iterator_position {}; /* Iterator over edges incident on a vertex in a ring graph. For vertex i, this returns edge (i, i+1) and then edge (i, i-1), wrapping around the end of the ring as needed. It is implemented with the boost::iterator_adaptor class, adapting an offset into the dereference::ring_offset array. */ class ring_incident_edge_iterator:public boost::iterator_adaptor < ring_incident_edge_iterator, boost::counting_iterator, edge_descriptor, boost::use_default, edge_descriptor > { public: ring_incident_edge_iterator(): ring_incident_edge_iterator::iterator_adaptor_(0),m_n(0),m_u(0) {}; explicit ring_incident_edge_iterator(const ring_graph& g, vertex_descriptor u, iterator_start): ring_incident_edge_iterator::iterator_adaptor_(0), m_n(g.n()),m_u(u) {}; explicit ring_incident_edge_iterator(const ring_graph& g, vertex_descriptor u, iterator_end): // A graph with one vertex only has a single self-loop. A graph with // two vertices has a single edge between them. All other graphs have // two edges per vertex. ring_incident_edge_iterator::iterator_adaptor_(g.n() > 2 ? 2:1), m_n(g.n()),m_u(u) {}; private: friend class boost::iterator_core_access; edge_descriptor dereference() const { static const int ring_offset[] = {1, -1}; vertex_descriptor v; std::size_t p = *this->base_reference(); if (m_u == 0 && p == 1) v = m_n-1; // Vertex n-1 precedes vertex 0. else v = (m_u+ring_offset[p]) % m_n; return edge_descriptor(m_u, v); } std::size_t m_n; // Size of the graph vertex_descriptor m_u; // Vertex whose out edges are iterated }; // IncidenceGraph valid expressions vertex_descriptor source(edge_descriptor e, const ring_graph&) { // The first vertex in the edge pair is the source. return e.first; } vertex_descriptor target(edge_descriptor e, const ring_graph&) { // The second vertex in the edge pair is the target. return e.second; } std::pair out_edges(vertex_descriptor u, const ring_graph& g) { return std::pair( out_edge_iterator(g, u, iterator_start()), out_edge_iterator(g, u, iterator_end()) ); } degree_size_type out_degree(vertex_descriptor, const ring_graph&) { // All vertices in a ring graph have two neighbors. return 2; } // BidirectionalGraph valid expressions std::pair in_edges(vertex_descriptor u, const ring_graph& g) { // The in-edges and out-edges are the same in an undirected graph. return out_edges(u, g); } degree_size_type in_degree(vertex_descriptor u, const ring_graph& g) { // The in-degree and out-degree are both equal to the number of incident // edges in an undirected graph. return out_degree(u, g); } degree_size_type degree(vertex_descriptor u, const ring_graph& g) { // The in-degree and out-degree are both equal to the number of incident // edges in an undirected graph. return out_degree(u, g); } /* Iterator over vertices adjacent to a given vertex. This iterates over the target vertices of all the incident edges. */ class ring_adjacency_iterator:public boost::adjacency_iterator_generator< ring_graph, vertex_descriptor, out_edge_iterator>::type { // The parent class is an iterator_adpator that turns an iterator over // out edges into an iterator over adjacent vertices. typedef boost::adjacency_iterator_generator< ring_graph, vertex_descriptor, out_edge_iterator>::type parent_class; public: ring_adjacency_iterator() {}; ring_adjacency_iterator(vertex_descriptor u, const ring_graph& g, iterator_start): parent_class(out_edge_iterator(g, u, iterator_start()), &g) {}; ring_adjacency_iterator(vertex_descriptor u, const ring_graph& g, iterator_end): parent_class(out_edge_iterator(g, u, iterator_end()), &g) {}; }; // AdjacencyGraph valid expressions std::pair adjacent_vertices(vertex_descriptor u, const ring_graph& g) { return std::pair( adjacency_iterator(u, g, iterator_start()), adjacency_iterator(u, g, iterator_end())); } // VertexListGraph valid expressions vertices_size_type num_vertices(const ring_graph& g) { return g.n(); }; std::pair vertices(const ring_graph& g) { return std::pair( vertex_iterator(0), // The first iterator position vertex_iterator(num_vertices(g)) ); // The last iterator position } /* Iterator over edges in a ring graph. This object iterates over all the vertices in the graph, then for each vertex returns its first outgoing edge. It is implemented with the boost::iterator_adaptor class, because it is essentially a vertex_iterator with a customized deference operation. */ class ring_edge_iterator:public boost::iterator_adaptor< ring_edge_iterator, vertex_iterator, edge_descriptor, boost::use_default, edge_descriptor > { public: ring_edge_iterator(): ring_edge_iterator::iterator_adaptor_(0),m_g(NULL) {}; explicit ring_edge_iterator(const ring_graph& g, iterator_start): ring_edge_iterator::iterator_adaptor_(vertices(g).first),m_g(&g) {}; explicit ring_edge_iterator(const ring_graph& g, iterator_end): ring_edge_iterator::iterator_adaptor_( // Size 2 graphs have a single edge connecting the two vertices. g.n() == 2 ? ++(vertices(g).first) : vertices(g).second ), m_g(&g) {}; private: friend class boost::iterator_core_access; edge_descriptor dereference() const { // The first element in the incident edge list of the current vertex. return *(out_edges(*this->base_reference(), *m_g).first); } // The graph being iterated over const ring_graph *m_g; }; // EdgeListGraph valid expressions std::pair edges(const ring_graph& g) { return std::pair( ring_edge_iterator(g, iterator_start()), ring_edge_iterator(g, iterator_end()) ); } edges_size_type num_edges(const ring_graph& g) { // There are as many edges as there are vertices, except for size 2 // graphs, which have a single edge connecting the two vertices. return g.n() == 2 ? 1:g.n(); } // AdjacencyMatrix valid expressions std::pair edge(vertex_descriptor u, vertex_descriptor v, const ring_graph& g) { if ((u == v + 1 || v == u + 1) && u > 0 && u < num_vertices(g) && v > 0 && v < num_vertices(g)) return std::pair(edge_descriptor(u, v), true); else return std::pair(edge_descriptor(), false); } /* Map from edges to weight values */ struct edge_weight_map { typedef double value_type; typedef value_type reference; typedef edge_descriptor key_type; typedef boost::readable_property_map_tag category; // Edges have a weight equal to the average of their endpoint indexes. reference operator[](key_type e) const { return (e.first + e.second)/2.0; } }; // Use these propety_map and property_traits parameterizations to refer to // the associated property map types. typedef boost::property_map::const_type const_edge_weight_map; typedef boost::property_traits::reference edge_weight_map_value_type; typedef boost::property_traits::key_type edge_weight_map_key; // PropertyMap valid expressions edge_weight_map_value_type get(const_edge_weight_map pmap, edge_weight_map_key e) { return pmap[e]; } // ReadablePropertyGraph valid expressions const_edge_weight_map get(boost::edge_weight_t, const ring_graph&) { return const_edge_weight_map(); } edge_weight_map_value_type get(boost::edge_weight_t tag, const ring_graph& g, edge_weight_map_key e) { return get(tag, g)[e]; } // This expression is not part of a graph concept, but is used to return the // default vertex index map used by the Dijkstra search algorithm. boost::identity_property_map get(boost::vertex_index_t, const ring_graph&) { // The vertex descriptors are already unsigned integer indices, so just // return an identity map. return boost::identity_property_map(); } // Print edges as (x, y) std::ostream& operator<<(std::ostream& output, const edge_descriptor& e) { return output << "(" << e.first << ", " << e.second << ")"; } int main (int argc, char const *argv[]) { using namespace boost; // Check the concepts that graph models. This is included to demonstrate // how concept checking works, but is not required for a working program // since Boost algorithms do their own concept checking. BOOST_CONCEPT_ASSERT(( BidirectionalGraphConcept )); BOOST_CONCEPT_ASSERT(( AdjacencyGraphConcept )); BOOST_CONCEPT_ASSERT(( VertexListGraphConcept )); BOOST_CONCEPT_ASSERT(( EdgeListGraphConcept )); BOOST_CONCEPT_ASSERT(( AdjacencyMatrixConcept )); BOOST_CONCEPT_ASSERT(( ReadablePropertyMapConcept )); BOOST_CONCEPT_ASSERT(( ReadablePropertyGraphConcept )); // Specify the size of the graph on the command line, or use a default size // of 5. std::size_t n = argc == 2 ? boost::lexical_cast(argv[1]) : 5; // Create a small ring graph. ring_graph g(n); // Print the outgoing edges of all the vertices. For n=5 this will print: // // Vertices, outgoing edges, and adjacent vertices // Vertex 0: (0, 1) (0, 4) Adjacent vertices 1 4 // Vertex 1: (1, 2) (1, 0) Adjacent vertices 2 0 // Vertex 2: (2, 3) (2, 1) Adjacent vertices 3 1 // Vertex 3: (3, 4) (3, 2) Adjacent vertices 4 2 // Vertex 4: (4, 0) (4, 3) Adjacent vertices 0 3 // 5 vertices std::cout << "Vertices, outgoing edges, and adjacent vertices" << std::endl; vertex_iterator vi, vi_end; for (boost::tie(vi, vi_end) = vertices(g); vi != vi_end; vi++) { vertex_descriptor u = *vi; std::cout << "Vertex " << u << ": "; // Adjacenct edges out_edge_iterator ei, ei_end; for (boost::tie(ei, ei_end) = out_edges(u, g); ei != ei_end; ei++) std::cout << *ei << " "; std::cout << " Adjacent vertices "; // Adjacent vertices // Here we want our adjacency_iterator and not boost::adjacency_iterator. ::adjacency_iterator ai, ai_end; for (boost::tie(ai, ai_end) = adjacent_vertices(u, g); ai != ai_end; ai++) { std::cout << *ai << " "; } std::cout << std::endl; } std::cout << num_vertices(g) << " vertices" << std::endl << std::endl; // Print all the edges in the graph along with their weights. For n=5 this // will print: // // Edges and weights // (0, 1) weight 0.5 // (1, 2) weight 1.5 // (2, 3) weight 2.5 // (3, 4) weight 3.5 // (4, 0) weight 2 // 5 edges std::cout << "Edges and weights" << std::endl; edge_iterator ei, ei_end; for (boost::tie(ei, ei_end) = edges(g); ei != ei_end; ei++) { edge_descriptor e = *ei; std::cout << e << " weight " << get(edge_weight, g, e) << std::endl; } std::cout << num_edges(g) << " edges" << std::endl; if (n>0) { std::cout << std::endl; // Do a Dijkstra search from vertex 0. For n=5 this will print: // // Dijkstra search from vertex 0 // Vertex 0: parent 0, distance 0 // Vertex 1: parent 0, distance 0.5 // Vertex 2: parent 1, distance 2 // Vertex 3: parent 2, distance 4.5 // Vertex 4: parent 0, distance 2 vertex_descriptor source = 0; std::vector pred(num_vertices(g)); std::vector dist(num_vertices(g)); iterator_property_map::iterator, property_map::const_type> pred_pm(pred.begin(), get(vertex_index, g)); iterator_property_map::iterator, property_map::const_type> dist_pm(dist.begin(), get(vertex_index, g)); dijkstra_shortest_paths(g, source, predecessor_map(pred_pm). distance_map(dist_pm) ); std::cout << "Dijkstra search from vertex " << source << std::endl; for (boost::tie(vi, vi_end) = vertices(g); vi != vi_end; ++vi) { vertex_descriptor u = *vi; std::cout << "Vertex " << u << ": " << "parent "<< pred[*vi] << ", " << "distance " << dist[u] << std::endl; } } return 0; }