Difference between revisions of "Boost"

From ProgrammingExamples
Jump to: navigation, search
(Boost Graph Library (BGL))
(Boost Graph Library (BGL))
Line 20: Line 20:
 
* [[CPP/Boost/BGL/DirectedGraph|Directed graphs only give access to out edges]]
 
* [[CPP/Boost/BGL/DirectedGraph|Directed graphs only give access to out edges]]
 
* [[CPP/Boost/BGL/BidirectionalGraph|Bidirectional graphs give access to both in and out edges]]
 
* [[CPP/Boost/BGL/BidirectionalGraph|Bidirectional graphs give access to both in and out edges]]
 +
* [[CPP/Boost/BGL/NumberOfNeighbors|Number of incoming, outgoing, and total edges]]

Revision as of 11:46, 27 January 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)