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

https://github.com/anishlearnstocode/graph-theory-lab

Graph Theory Lab Practicals @ Delhi Technological University 🎓
https://github.com/anishlearnstocode/graph-theory-lab

dtu graph-theory lab practical

Last synced: 5 months ago
JSON representation

Graph Theory Lab Practicals @ Delhi Technological University 🎓

Awesome Lists containing this project

README

          

# Graph Theory (MC-405) Lab Practicals
__Anish Sachdeva (DTU/2K16/MC/013)__

⭐ [Project Report](assets/graph-theory-lab-file.pdf)

| No. | Experiment Name | Date | Solution |
|-----|-----------------|------|:----:|
| 1 | Program to find the number of vertices, even vertices, odd vertices and number of edges in a Graph. | 20th August 2020 | [![Java](https://img.icons8.com/color/35/000000/java-coffee-cup-logo.png)](src/Lab1.java) [![cpp](https://img.icons8.com/color/30/000000/c-plus-plus-logo.png)](cpp/lab1.cpp) |
| 2 | Program to Find Union, Intersection and ring-sum of 2 graphs. | 27th September 2020 | [![Java](https://img.icons8.com/color/35/000000/java-coffee-cup-logo.png)](src/Lab2.java) [![cpp](https://img.icons8.com/color/30/000000/c-plus-plus-logo.png)](cpp/lab2.cpp)|
| 3 | Program to Find Minimum Spanning tree Using Prim's Algorithm | 3d September 2020 | [![Java](https://img.icons8.com/color/35/000000/java-coffee-cup-logo.png)](src/Lab3.java) [![cpp](https://img.icons8.com/color/30/000000/c-plus-plus-logo.png)](cpp/lab3.cpp)|
| 4 | Program to Find Minimum Spanning tree Using Kruskal's Algorithm | 17th September 2020| [![Java](https://img.icons8.com/color/35/000000/java-coffee-cup-logo.png)](src/Lab4.java) [![cpp](https://img.icons8.com/color/30/000000/c-plus-plus-logo.png)](cpp/lab4.cpp) |
| 5 | Program to find Shortest Path between 2 Vertices using Dijkstra Algorithm | 21st September 2020 | [![Java](https://img.icons8.com/color/35/000000/java-coffee-cup-logo.png)](src/Lab5.java) [![cpp](https://img.icons8.com/color/30/000000/c-plus-plus-logo.png)](cpp/lab5.cpp) |
| 6 | Program to find Shortest Path between every pair of vertices in a graph using Floyd-Warshall's Algorithm. | 22nd October 2020 | [![Java](https://img.icons8.com/color/35/000000/java-coffee-cup-logo.png)](src/Lab6.java) [![cpp](https://img.icons8.com/color/30/000000/c-plus-plus-logo.png)](cpp/lab6.cpp) |
| 7 | Program to find Shortest Path between 2 Vertices using Bellman Ford's Algorithm. | 22nd October 2020 | [![Java](https://img.icons8.com/color/35/000000/java-coffee-cup-logo.png)](src/Lab7.java) [![cpp](https://img.icons8.com/color/30/000000/c-plus-plus-logo.png)](cpp/lab7.cpp) |
| 8 | Program For finding maximum Matching for bipartite graph | 29th October 2020 | [![Java](https://img.icons8.com/color/35/000000/java-coffee-cup-logo.png)](src/Lab8.java) [![cpp](https://img.icons8.com/color/30/000000/c-plus-plus-logo.png)](cpp/lab8.cpp) |
| 9 | Program For finding maximum Matching for General Path | 29th October 2020 | [![cpp](https://img.icons8.com/color/30/000000/c-plus-plus-logo.png)](cpp/lab9.cpp) |
| 10 | Program to find maximum flow from source node to sink node using Ford-Fulkerson Algorithm | 29th October 2020 | [![Java](https://img.icons8.com/color/35/000000/java-coffee-cup-logo.png)](src/Lab10.java) [![cpp](https://img.icons8.com/color/30/000000/c-plus-plus-logo.png)](cpp/lab10.cpp) |

The above programs only contain driver code and main logic has been encapsulated inside the
Graph Classes, namely:

| Graph Class | Code |
|-------------|------|
| Un-directed Unweighted Graph | [![Java](https://img.icons8.com/color/40/000000/java-coffee-cup-logo.png)](src/UnDirectedGraph.java) |
| Un-Directed Weighted Graph | [![Java](https://img.icons8.com/color/40/000000/java-coffee-cup-logo.png)](src/UnDirectedWeightedGraph.java) |
| Directed Graph | [![Java](https://img.icons8.com/color/40/000000/java-coffee-cup-logo.png)](src/DirectedGraph.java) |