The adjacency structure is based on Python dictionaries so there is no
ordering of the nodes by default. You could modify the depth first
algorithms to order the nodes during traversal.
Here is an example of how to do that to visit the nodes in sorted
order (nodes must be sortable).
https://gist.github.com/3751844
Aric