Diameter - Maple Help
For the best experience, we recommend viewing online help using Google Chrome or Microsoft Edge.

Online Help

All Products    Maple    MapleSim


GraphTheory

  

Diameter

  

find the diameter of a graph

 

Calling Sequence

Parameters

Description

Examples

Calling Sequence

Diameter(G)

Parameters

G

-

graph

Description

• 

Diameter returns the maximum distance among all pairs of vertices in the graph G. If G is disconnected then the output is infinity.

• 

For weighted graphs the edge weights are used to denote the distance accrued while traveling along each edge.  For unweighted graphs the length of each edge is assumed to be 1.

• 

The strategy is to use the Floyd-Warshall all-pairs shortest path algorithm. See AllPairsDistance.

Examples

withGraphTheory:

withSpecialGraphs:

PPetersenGraph

PGraph 1: an undirected graph with 10 vertices and 15 edge(s)

(1)

DiameterP

2

(2)

CCycleGraph19

CGraph 2: an undirected graph with 19 vertices and 19 edge(s)

(3)

DiameterC

9

(4)

GGraph1,2,0.2,1,4,1.1,2,3,0.3,3,4,0.4

GGraph 3: an undirected weighted graph with 4 vertices and 4 edge(s)

(5)

DrawGraphG

DiameterG

0.9

(6)

The distance between vertices 1 and 4 is maximal

DijkstrasAlgorithmG,1,4

1,2,3,4,0.9

(7)

See Also

AllPairsDistance

DijkstrasAlgorithm

Distance

Radius

ShortestPath