transitive_closure_test2.cpp 986 B

123456789101112131415161718192021222324252627282930313233343536
  1. // Copyright (C) 2004 Jeremy Siek <jsiek@cs.indiana.edu>
  2. // Distributed under the Boost Software License, Version 1.0. (See
  3. // accompanying file LICENSE_1_0.txt or copy at
  4. // http://www.boost.org/LICENSE_1_0.txt)
  5. #include <boost/graph/adjacency_list.hpp>
  6. #include <boost/graph/depth_first_search.hpp>
  7. #include <boost/graph/transitive_closure.hpp>
  8. #include <iostream>
  9. using namespace std;
  10. using namespace boost;
  11. typedef adjacency_list<> graph_t;
  12. int main(int argc, char *argv[]) {
  13. graph_t g(5),g_TC;
  14. add_edge(0,2,g);
  15. add_edge(1,0,g);
  16. add_edge(1,2,g);
  17. add_edge(1,4,g);
  18. add_edge(3,0,g);
  19. add_edge(3,2,g);
  20. add_edge(4,2,g);
  21. add_edge(4,3,g);
  22. transitive_closure(g,g_TC);
  23. cout << "original graph: 0->2, 1->0, 1->2, 1->4, 3->0, 3->2, 4->2, 4->3"
  24. << endl;
  25. cout << "transitive closure: ";
  26. graph_t::edge_iterator i,iend;
  27. for(boost::tie(i,iend) = edges(g_TC);i!=iend;++i) {
  28. cout << source(*i,g_TC) << "->" << target(*i,g_TC) << " ";
  29. }
  30. cout << endl;
  31. }