You could use Boost.Graph library.
Very complicated at first, but provide efficient data storage and highly optimized graph algorithm implementations.
From the site:
Algorithms
The BGL algorithms consist of a core set of algorithm patterns (implemented as generic algorithms) and a larger set of graph algorithms. The core algorithm patterns are
- Breadth First Search
- Depth First Search
- Uniform Cost Search
By themselves, the algorithm patterns do not compute any meaningful quantities over graphs; they are merely building blocks for constructing graph algorithms. The graph algorithms in the BGL currently include
- Dijkstra's Shortest Paths
- Bellman-Ford Shortest Paths
- Johnson's All-Pairs Shortest Paths
- Kruskal's Minimum Spanning Tree
- Prim's Minimum Spanning Tree
- Connected Components
- Strongly Connected Components
- Dynamic Connected Components (using Disjoint Sets)
- Topological Sort Transpose
- Reverse Cuthill Mckee Ordering
- Smallest Last Vertex Ordering
- Sequential Vertex Coloring
Data Structures
The BGL currently provides two graph classes and an edge list adaptor:
- adjacency_list
- adjacency_matrix
- edge_list
The adjacency_list class is the general purpose “swiss army knife” of graph classes. It is highly parameterized so that it can be optimized for different situations: the graph is directed or undirected, allow or disallow parallel edges, efficient access to just the out-edges or also to the in-edges, fast vertex insertion and removal at the cost of extra space overhead, etc.
The adjacency_matrix class stores edges in a |V| x |V| matrix (where |V| is the number of vertices). The elements of this matrix represent edges in the graph. Adjacency matrix representations are especially suitable for very dense graphs, i.e., those where the number of edges approaches |V|2.
The edge_list class is an adaptor that takes any kind of edge iterator and implements an Edge List Graph.
nextnodepointer represent? It is usual to implement trees with unknown number of children per node with a singlefirst_childpointer in the parent and anext_node(ornext_sibling) list that forms the list of children, but in that case,childNodeshould bestruct tree* childNode;(to represent the pointer to the first child, from which to start iterating overchildnode->nextnodefor the rest of the siblings). Is that what you intended? – David Rodríguez - dribeas Jun 17 '11 at 7:54