Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/nayanpatel48/data-structures-algorithms
- Owner: Nayanpatel48
- Created: 2024-06-19T07:18:32.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-01-16T07:32:16.000Z (21 days ago)
- Last Synced: 2025-01-16T08:46:20.006Z (21 days ago)
- Topics: java
- Language: Java
- Homepage:
- Size: 296 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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)