nextupprevious
Next:7.1.1 Data Structures for Graph RepresentationUp:7. Directed GraphsPrevious:7. Directed Graphs

7.1 Directed Graphs

A directed graph or digraph G comprises

1. a set of vertices V

2. a set of directed edges or arcs, E (an arc is an ordered pair of vertices)

Example: See Figure 7.1
 
 

Figure 7.1: A digraph with 4 vertices and 5 arcs
\begin{figure}\centerline{\psfig{figure=figures/Fdigraph1.ps}}\end{figure}

V = {1, 2, 3, 4}

E = {(1,2), (1,3), (2,4), (3,2), (4,3)}




nextupprevious
Next:7.1.1 Data Structures for Graph RepresentationUp:7. Directed GraphsPrevious:7. Directed Graphs
eEL,CSA_Dept,IISc,Bangalore