项目作者: yogesh-chaudhari-77

项目描述 :
Graph implemented using Adjacency List and Adjacency Matrix
高级语言: Java
项目地址: git://github.com/yogesh-chaudhari-77/Graphs-Java.git
创建时间: 2021-04-14T01:10:47Z
项目社区:https://github.com/yogesh-chaudhari-77/Graphs-Java

开源协议:

下载


Graphs-Java

Graph implemented using Adjacency List and Adjacency Matrix

When to use Adjacency Matrix?

The basic operations like adding an edge, removing an edge and checking whether there is an edge from vertex i to vertex j
are extremely time efficient, constant time operations.

If the graph is dense and the number of edges is large, adjacency matrix should be the first choice.
Even if the graph and the adjacency matrix is sparse, we can represent it using data structures for sparse matrices.

When to use Adjacency List?

Though the basic operations like adding an edge, removing an edge and checking whether there is an edge from vertex i to vertex j
are not as extremely time efficient, constant time operations as Adjacency Matrix my implementation using HashMap>> acheives comparable complexity.

But if the Graph is too large and sparse and number of edges are limited, Adjacency List should be first choice instead.