Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
C++ implemantation of different Data Structures and Algorithms.

## Disjoint Set Data Structures
Implementation of Disjoint Set Union algorithm using arrays in c++.
Disjoint Set Union algorithm is implemented using arrays in c++.

## Topological-Sort
C++ inplementation of Topological Sort for a Directed Acyclic Graph (DAG). Topological sorting for Directed Acyclic Graph (DAG) is a linear ordering of vertices such that for every directed edge u -> v, vertex u comes before v in the ordering. Topological Sorting for a graph is not possible if the graph is not a DAG .