Logo Data Structures and Algorithms with Object-Oriented Design Patterns in C++
next up previous contents index

Time Comparison

The following four operations are used extensively in the implementations of many different graph algorithms:

find edge (v,w)
Given vertices v and w, this operation locates the corresponding Edge instance. When using an adjacency matrix, we can find an edge in constant time.

When adjacency lists are used, the worst-case running time is tex2html_wrap_inline71901, since tex2html_wrap_inline71903 is the length of the adjacency list associated with vertex v.

This is the operation performed by the SelectEdge member function of the Graph class.

enumerate all edges
In order to locate all the edges in when using adjacency matrices, it is necessary to examine all tex2html_wrap_inline71641 matrix entries. Therefore, the worst-case running time needed to enumerate all the edges is tex2html_wrap_inline71729.

On the other hand, to enumerate all the edges when using adjacency lists requires the traversal of tex2html_wrap_inline71781 lists. In all there are tex2html_wrap_inline71793 edges. Therefore the worst case running time is tex2html_wrap_inline71915.

This operation is performed using the iterator returned by the Edges member function of the Graph class.

enumerate edges emanating from v
To enumerate all the edges that emanate from vertex v requires a complete scan of the tex2html_wrap_inline71921 row of an adjacency matrix. Therefore, the worst-case running time when using adjacency matrices is tex2html_wrap_inline71805.

Enumerating the edges emanating from vertex v is a trivial operation when using adjacency lists. All we need do is traverse the tex2html_wrap_inline71921 list. This takes tex2html_wrap_inline71901 time in the worst case.

This operation is performed using the iterator returned by the EmanatingEdges member function of the Graph class.

enumerate edges incident on w
To enumerate all the edges are incident on vertex w requires a complete scan of the tex2html_wrap_inline71935 column of an adjacency matrix. Therefore, the worst-case running time when using adjacency matrices is tex2html_wrap_inline71805.

Enumerating the edges incident on vertex w is a non-trivial operation when using adjacency lists. It is necessary to search every adjacency list in order to find all the edges incident on a given vertex. Therefore, the worst-case running time is tex2html_wrap_inline71915.

This operation is performed using the iterator returned by the IncidentEdges member function of the Graph class.

Table gif summarizes these running times.

 

 

representation scheme

operation

adjacency matrix adjacency list
find edge (v,w) O(1) tex2html_wrap_inline71901
enumerate all edges tex2html_wrap_inline71729 tex2html_wrap_inline71915
enumerate edges emanating from v tex2html_wrap_inline71805 tex2html_wrap_inline71901
enumerate edges incident on w tex2html_wrap_inline71805 tex2html_wrap_inline71915
Table: Comparison of Graph Representations


next up previous contents index

Bruno Copyright © 1997 by Bruno R. Preiss, P.Eng. All rights reserved.