Graphs


Premium Content - Free Preview

Graphs

Graphs are important data structures used in many areas, such as mapping the roads of an area, or charting the connection between people on a social network.

Definition
A graph is a set of Nodes and a collection of Edges that connect each pair of Nodes. Here's a simple graph, with Nodes numbered 0 to 5:

simple-graph

Trees are special types of graphs where each Node has one parent and cycles are not allowed. Graphs allow cycles, and there's no hierarchy of parents and children. Nodes can be connected to any number of other Nodes in a graph, or to none of them:

simple graph 2

Node 1 is disconnected from the other Nodes

We will deal with ordinary graphs, which are undirected - if you can travel from Node a to Node b, you can also go from Node b to Node a. (Directed graphs do not follow this condition.)

Representing a Graph

A Node in a real-world graph represents something unique, such as a city on a map, or a person in a network. When studying graphs, the nodes can just be labeled with a unique number starting from 0, so they're easy to work with.

There are many ways to represent a graph in a computer. A good structure should balance using space efficiently and performing operations quickly. As seen with Trees, you could represent the data with individual Nodes. However, this wouldn't let you quickly access any Node in the graph. A good alternative is to create an array or list to represent all the nodes. Each cell in the list can then store a list of all the Nodes that are connected to that Node.


End of Free Content Preview. Please Sign in or Sign up to buy premium content.

Contact Us
Sign in or email us at [email protected]