From b5f9663f90256c0369e0bbf0a0370dcb782f1c6d Mon Sep 17 00:00:00 2001 From: Swastika Gupta <64654203+Swastyy@users.noreply.github.com> Date: Thu, 15 Jul 2021 14:09:48 +0530 Subject: [PATCH] Update wave_sort.cpp --- sorting/wave_sort.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sorting/wave_sort.cpp b/sorting/wave_sort.cpp index cfe566d5f..92dccae7a 100644 --- a/sorting/wave_sort.cpp +++ b/sorting/wave_sort.cpp @@ -1,6 +1,6 @@ /** * @file - * @brief Implementation of [Wave sort] algorithm + * @brief Implementation of [Wave sort](https://www.geeksforgeeks.org/sort-array-wave-form-2/) algorithm * @details * Wave Sort is a sorting algorithm that works in \f$O(nlogn)\f$ time assuming * the sort function used works in \f$O(nlogn)\f$ time.