Difference between revisions of "Boost"

From ProgrammingExamples
Jump to: navigation, search
(Boost Graph Library (BGL))
Line 25: Line 25:
 
* [[CPP/Boost/BGL/DijkstraComputePath|Find the shortest path (Dijkstra) from one specified vertex to another specified vertex in a graph]]
 
* [[CPP/Boost/BGL/DijkstraComputePath|Find the shortest path (Dijkstra) from one specified vertex to another specified vertex in a graph]]
 
* [[CPP/Boost/CreateGraph|Create a graph]]
 
* [[CPP/Boost/CreateGraph|Create a graph]]
 +
* [[CPP/Boost/RemoveVertex|Remove a vertex from a graph]]
 +
* [[CPP/Boost/RemoveEdge|Remove an edge from a graph]]
 
* [[CPP/Boost/BGL/ReadGraph|Read a graph from a file]]
 
* [[CPP/Boost/BGL/ReadGraph|Read a graph from a file]]
 
* [[CPP/Boost/BGL/WriteGraph|Write a graph to a file]]
 
* [[CPP/Boost/BGL/WriteGraph|Write a graph to a file]]

Revision as of 15:10, 11 June 2011

The following examples are frequent use cases of parts of the Boost (http://www.boost.org/) library. Each example includes a CMakeLists.txt file so it can be easily compiled.

Boost Graph Library (BGL)