filtered_vec_as_graph.cpp

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

CPP
60
字号
//=======================================================================// Copyright 2001 University of Notre Dame.// Author: Jeremy G. Siek//// 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)//=======================================================================/*    Sample output:   filtered out-edges:   A -->    B -->    C --> E    D --> E    E -->  */#include <boost/config.hpp>#include <iostream>#include <boost/graph/vector_as_graph.hpp>#include <boost/graph/filtered_graph.hpp>#include <boost/graph/graph_utility.hpp>struct constant_target {  constant_target() { }  constant_target(int t) : target(t) { }  bool operator()(const std::pair<int,int>& e) const {    return e.second == target;  }  int target;};int main(){  using namespace boost;    enum { A, B, C, D, E, N };  const char* name = "ABCDE";  typedef std::vector < std::list < int > > Graph;  Graph g(N);  g[A].push_back(B);  g[A].push_back(C);  g[C].push_back(D);  g[C].push_back(E);  g[D].push_back(E);  g[E].push_back(C);  constant_target filter(E);  filtered_graph<Graph, constant_target> fg(g, filter);  std::cout << "filtered out-edges:" << std::endl;  print_graph(fg, name);    return 0;}

⌨️ 快捷键说明

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