Graphs/Traversal
From charlesreid1
Introduction
Graph traversal is a way of walking through the entire graph, visiting each vertex in the graph once.
There are some similarities with tree traversal, but graph traversal is basically a more general version of tree traversal - trees are DAGs (directed acyclic graphs), so tree traversals are traversals on a DAG.
Related Pages
Related pages on tree traversal:
Related pages on breadth-first search and traversal:
Related pages on
Flags