copy-example.cpp 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. //=======================================================================
  2. // Copyright 2001 Jeremy G. Siek, Andrew Lumsdaine, Lie-Quan Lee,
  3. //
  4. // Distributed under the Boost Software License, Version 1.0. (See
  5. // accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //=======================================================================
  8. #include <boost/config.hpp>
  9. #include <iostream>
  10. #include <boost/graph/copy.hpp>
  11. #include <boost/graph/adjacency_list.hpp>
  12. #include <boost/graph/graph_utility.hpp>
  13. int
  14. main()
  15. {
  16. using namespace boost;
  17. typedef adjacency_list < vecS, vecS, directedS,
  18. property < vertex_name_t, char > > graph_t;
  19. enum
  20. { a, b, c, d, e, f, g, N };
  21. graph_t G(N);
  22. property_map < graph_t, vertex_name_t >::type
  23. name_map = get(vertex_name, G);
  24. char name = 'a';
  25. graph_traits < graph_t >::vertex_iterator v, v_end;
  26. for (boost::tie(v, v_end) = vertices(G); v != v_end; ++v, ++name)
  27. name_map[*v] = name;
  28. typedef std::pair < int, int >E;
  29. E edges[] = { E(a, c), E(a, d), E(b, a), E(b, d), E(c, f),
  30. E(d, c), E(d, e), E(d, f), E(e, b), E(e, g), E(f, e), E(f, g)
  31. };
  32. for (int i = 0; i < 12; ++i)
  33. add_edge(edges[i].first, edges[i].second, G);
  34. print_graph(G, name_map);
  35. std::cout << std::endl;
  36. graph_t G_copy;
  37. copy_graph(G, G_copy);
  38. print_graph(G_copy, name_map);
  39. return 0;
  40. }