Skip to content
Ned Bingham edited this page Apr 2, 2017 · 2 revisions

std/graph.h


graph

A node in a graph.

Member Variables

  • value_type value is the value that this node contains.
  • links next the outgoing arcs of this node.
  • links prev the incoming arcs of this node.

Member Functions

Constructor

node()

The default constructor calls the default constructor of end_node and leaves value unset.

node(const value_type &value)

Calls the default constructor of end_node and sets value directly.

Simple Containers

Standard Containers

Interface Containers

Specialized Containers

Input/Output

Algorithm

Clone this wiki locally