Sophie

Sophie

distrib > Mandriva > 2010.0 > i586 > media > contrib-release > by-pkgid > 8a2e50878ac50dcad74d71305f566f1d > files > 284

python-networkx-0.99-3mdv2010.0.noarch.rpm

.. _traversal:

Traversal
=========

.. toctree::
   :maxdepth: 2

Components
----------
.. automodule:: networkx.algorithms.traversal.component
.. currentmodule:: networkx

Undirected Graphs
^^^^^^^^^^^^^^^^^
.. autosummary::
   :toctree: generated/

   is_connected
   number_connected_components
   connected_components
   connected_component_subgraphs
   node_connected_component

Directed Graphs
^^^^^^^^^^^^^^^
.. autosummary::
   :toctree: generated/

   is_strongly_connected
   number_strongly_connected_components
   strongly_connected_components
   strongly_connected_component_subgraphs
   strongly_connected_components_recursive
   kosaraju_strongly_connected_components

DAGs
----
.. automodule:: networkx.algorithms.traversal.dag
.. currentmodule:: networkx

.. autosummary::
   :toctree: generated/

   topological_sort
   topological_sort_recursive
   is_directed_acyclic_graph


Distance
--------
.. automodule:: networkx.algorithms.traversal.distance
.. currentmodule:: networkx

.. autosummary::
   :toctree: generated/

   eccentricity
   diameter
   radius
   periphery
   center

Paths
-----
.. automodule:: networkx.algorithms.traversal.path
.. currentmodule:: networkx

.. autosummary::
   :toctree: generated/

   shortest_path
   shortest_path_length
   bidirectional_shortest_path
   single_source_shortest_path
   single_source_shortest_path_length
   all_pairs_shortest_path
   all_pairs_shortest_path_length
   dijkstra_path
   dijkstra_path_length
   bidirectional_dijkstra
   single_source_dijkstra_path
   single_source_dijkstra_path_length
   single_source_dijkstra
   dijkstra_predecessor_and_distance
   predecessor
   floyd_warshall



Search
------
.. automodule:: networkx.algorithms.traversal.search
.. currentmodule:: networkx

.. autosummary::
   :toctree: generated/

   dfs_preorder
   dfs_postorder
   dfs_predecessor
   dfs_successor
   dfs_tree