Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/nayanpatel48/data-structures-algorithms

This is a repository dedicated to DSA.
https://github.com/nayanpatel48/data-structures-algorithms

java

Last synced: 17 days ago
JSON representation

This is a repository dedicated to DSA.

Awesome Lists containing this project

README

        

# Graph Algorithms and Tasks

## Table of Contents

1. [Bellman-Ford Algorithm](#bellman-ford-algorithm)
2. [Dijkstra's Algorithm](#dijkstras-algorithm)
3. [Breadth-First Search (BFS)](#breadth-first-search-bfs)
4. [Depth-First Search (DFS)](#depth-first-search-dfs)
5. [Graph Creation](#graph-creation)
- [Unweighted & Undirected Graph](#unweighted-undirected-graph)
- [Weighted & Undirected Graph](#weighted-undirected-graph)
6. [Graph Representation](#graph-representation)
- [Adjacency Matrix](#adjacency-matrix)
- [Adjacency List](#adjacency-list)
7. [Print All Paths](#print-all-paths)
8. [Topological Sorting](#topological-sorting)
9. [Cycle Detection](#cycle-detection)
- [Cycle Detection in Directed Graph](#cycle-detection-in-directed-graph)
- [Cycle Detection in Undirected Graph](#cycle-detection-in-undirected-graph)
10. [GraphCreationUsing2DArray](#GraphCreationUsing2DArray)