From c68eaa9e6679d2c66bba85793b2c2d1890e51500 Mon Sep 17 00:00:00 2001 From: Aayush Vyas <70998175+AayushVyasKIIT@users.noreply.github.com> Date: Wed, 1 Sep 2021 07:17:34 +0530 Subject: [PATCH] Update data_structures/dsu_union_rank.cpp Co-authored-by: David Leal --- data_structures/dsu_union_rank.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data_structures/dsu_union_rank.cpp b/data_structures/dsu_union_rank.cpp index a1550f9b4..bd4759110 100644 --- a/data_structures/dsu_union_rank.cpp +++ b/data_structures/dsu_union_rank.cpp @@ -1,6 +1,6 @@ /** * @file - * @brief [dsu(Disjoint sets)](https://en.wikipedia.org/wiki/Disjoint-set-data_structure) + * @brief [DSU (Disjoint sets)](https://en.wikipedia.org/wiki/Disjoint-set-data_structure) * @details * dsu : It is a very powerful data structure which keeps track of different * clusters(sets) of elements, these sets are disjoint(doesnot have a common element).