Types of Graphs

This lesson showcases the two main categories of graphs.

We'll cover the following...

Types of graphs

There are two common types of graphs:

  1. Undirected
  2. Directed

Undirected graph

In an undirected graph, the edges are by default, bidirectional by default. For a pair (2, 3), there exists an edge between vertex 2 and 3 without any specific direction. ...