An open API service indexing awesome lists of open source software.

https://github.com/harshit7962/graphs_for_beginners


https://github.com/harshit7962/graphs_for_beginners

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# Graphs_For_Beginners
Graphs are non-linear data-structure without hierarchy that are used to represent relationships between components...
There are two types of graphs:
1) **Undirected Graph:** Graphs where edges don't have any particular direction and the edge (v1,v2) is same as (v2,v1)...
2) **Directed Graphs:** Graphs where edges have a particular direction and the edge (v1,v2) implies a path from v1 to v2, and not vice-versa...

A graph can be represented using an adjacency matrix or an adjacency list.