Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 499 Bytes

File metadata and controls

32 lines (19 loc) · 499 Bytes

Representing a Graph

Question

Represent a Graph of V nodes and E edges in Python.

Solution

.. literalinclude:: ../../languages/python/algorithm_graph.py
   :language: python
   :tab-width: 4

.. runcode:: ../../languages/python/algorithm_graph.py
   :language: python
   :codesite: ideone

Explanation

.. seealso::

   * :python-suggest-improve:`algorithm_graph.py`
   * :python-better-explain:`algorithm_graph.rst`