cc-internet.cpp

来自「Boost provides free peer-reviewed portab」· C++ 代码 · 共 42 行

CPP
42
字号
//=======================================================================// Copyright 2001 Jeremy G. Siek, Andrew Lumsdaine, Lie-Quan Lee, //// 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 <boost/config.hpp>#include <fstream>#include <vector>#include <string>#include <boost/graph/connected_components.hpp>#include <boost/graph/graphviz.hpp>intmain(){  using namespace boost;  GraphvizGraph g;  read_graphviz("figs/cc-internet.dot", g);  std::vector<int> component(num_vertices(g));  connected_components    (g, make_iterator_property_map(component.begin(),                                   get(vertex_index, g), component[0]));  property_map < GraphvizGraph, vertex_attribute_t >::type    vertex_attr_map = get(vertex_attribute, g);  std::string color[] = {  "white", "gray", "black", "lightgray"};  graph_traits < GraphvizGraph >::vertex_iterator vi, vi_end;  for (tie(vi, vi_end) = vertices(g); vi != vi_end; ++vi) {    vertex_attr_map[*vi]["color"] = color[component[*vi]];    vertex_attr_map[*vi]["style"] = "filled";    if (vertex_attr_map[*vi]["color"] == "black")      vertex_attr_map[*vi]["fontcolor"] = "white";  }  write_graphviz("figs/cc-internet-out.dot", g);}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?