Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
July 7, 2021 11:07 pm GMT

Types of Graph

Hello, today, I'm gonna discuss the famous types of graphs, before reading this post, I suggest you check this post (introduction to graph in data structure) firstly.

Types of Graph

  • Directed Graph : (also called directed network or digraph) in this type, every edge is directed from one node to another.

Directed graph in data structure Aya Bouchiha

  • Undirected Graph: all the edges can be traversed from both directions.

Undirected graph in data structure Aya Bouchiha

  • Weighted Graph: in this one, all edges have a weight which is a numerical value

Weighted graph in data structure Aya Bouchiha

  • Unweighted Graph: the opposite of weighted graph, each edge has not a weight

  • Connected Graph: a connected graph is a graph that has a path between every pair of nodes.

Connected graph in data structure Aya Bouchiha

  • Disconnected Graph: a graph is called disconnect if there is at least two nodes of the graph are not connected by a path.

Disconnected graph in data structure Aya Bouchiha

  • Simple Graph: a graph is simple if it has no loops and no multiple edges.

Simple graph in data structure Aya Bouchiha

Reference and useful resources

if you have any suggestions, you can contact me on telegram, see you next post.

Have a great day :)
#day_25


Original Link: https://dev.to/ayabouchiha/types-of-graph-14ei

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To