Difference between revisions of "Graph (data structure)"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(See also)
Line 12: Line 12:
 
* [[Computer science]]
 
* [[Computer science]]
 
* [[Data structure]]
 
* [[Data structure]]
* [[Directed graph (mathematics)]]
+
* [[Directed graph)]]
 
* [[Graph (mathematics)]]  
 
* [[Graph (mathematics)]]  
 
* [[Mathematics]]
 
* [[Mathematics]]

Revision as of 08:52, 10 March 2016

In computer science, a graph is an abstract data type that is meant to implement the graph and directed graph concepts from mathematics.

Description

A graph data structure consists of a finite (and possibly mutable) set of nodes or vertices, together with a set of ordered pairs of these nodes (or, in some cases, a set of unordered pairs). These pairs are known as edges or arcs. As in mathematics, an edge (x,y) is said to point or go from x to y. The nodes may be part of the graph structure, or may be external entities represented by integer indices or references.

A graph data structure may also associate to each edge some edge value, such as a symbolic label or a numeric attribute (cost, capacity, length, etc.).

See also

External links