All examples By author By category About

jrodgz

JDR VI7 for CS725@ODU

##Name: Joel D. Rodriguez-Ortiz

##Node-Link Diagram Insights

Insights gained from this graph include:

In general node-link graphs are good for visually observing topologies, and for intuitively understanding algorithms that are normally hard to express mathematically (shuch as shortest paths).

##Adjacency-Matrix View Insights

Note
All-pairs shortest paths have been calculated in the second adjacency matrix view presented. Distances have been encoded via colors. Bluer distances represent the magnitude of shorter distances from A to B, and greener ones represent longer distances. The exception is red which represents the distance of 1, to verify correctness with the first adjacency matrix and to make it easy to find adjacent nodes.

In the first matrix, red is a distance of 1 and blue a distance of 0.

Insights gained from this graph include:

Adjacency matrix views are suited for high information density and are typically well suited for algorithmic calculations.

##Extras