tags:

views:

22

answers:

1

what is the difference between the terms edge and path in graph data structure

+1  A: 

An edge is something that connects two nodes. A path is a series of edges in sequence that defines a "path" from node A to node B.

http://en.wikipedia.org/wiki/Graph_(data_structure)

Ian Henry