Using vertex-based representations for graphs, the list
((A B C D) (B A C) (C A B D) (D A C)) is
used to represent the following graph:
The same graph would be represented in edge-based form by the list
((A B) (A C) (A D) (B C) (C D)).
-
Draw the graph represented by
the list
((X Y E F) (Z Y E F) (Y X Z) (E X Z)
(F X Z)) - what is the edge based representation for this graph?