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

Undirected Graphs

An undirected graph is a graph in which the nodes are connected by undirected arcs  . An undirected arc is an edge that has no arrow. Both ends of an undirected arc are equivalent--there is no head or tail. Therefore, we represent an edge in an undirected graph as a set rather than an ordered pair:

Definition (Undirected Graph)  An undirected graph   is an ordered pair tex2html_wrap_inline70093 with the following properties:
  1. The first component, tex2html_wrap_inline70095, is a finite, non-empty set. The elements of tex2html_wrap_inline70095 are called the vertices of G.
  2. The second component, tex2html_wrap_inline70101, is a finite set of sets. Each element of tex2html_wrap_inline70101 is a set that is comprised of exactly two (distinct) vertices. The elements of tex2html_wrap_inline70101 are called the edges of G.

For example, consider the undirected graph tex2html_wrap_inline70339 comprised of four vertices and four edges:

eqnarray48443

The graph tex2html_wrap_inline70341 can be represented graphically as shown in Figure gif. The vertices are represented by appropriately labeled circles, and the edges are represented by lines that connect associated vertices.

   figure48447
Figure: An undirected graph.

Notice that because an edge in an undirected graph is a set, tex2html_wrap_inline70345, and since tex2html_wrap_inline70347 is also a set, it cannot contain more than one instance of a given edge. Another consequence of Definition gif is that there cannot be an edge from a node to itself in an undirected graph because an edge is a set of size two and a set cannot contain duplicates.


next up previous contents index

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