From 7c48953987f21b500a3cd4983bd03d139310fd90 Mon Sep 17 00:00:00 2001 From: saha99 <52978571+saha99@users.noreply.github.com> Date: Wed, 23 Oct 2019 23:39:01 +0530 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cf7672f..cf8ab2b 100644 --- a/README.md +++ b/README.md @@ -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 .