A data structure is a particular way of organizing data in a computer so that it can be used efficiently. Different kinds of data structures are suited to different kinds of applications, and some are highly specialized to specific tasks.
This is a collection of abstract data structures and algorithms implemented in Java. The code is well commented to allow an easy comprehension. Every data structure is well tested.
You can contact me at [email protected]
This repo contains the following data structure :
We have the following three graph representation :
-
Problem of Reachability : Given a graph G and a vertex S, we want to output the collection of vertices v of G so that there is a path from S to v.
-
Advanced Shortest Path with Bidirectional Dijkstra algorithm
The code is licensed under MIT License. Feel free to contribute to this repository.