Update wave_sort.cpp

This commit is contained in:
Swastika Gupta
2021-07-15 14:09:48 +05:30
committed by GitHub
parent 2e53a44e17
commit b5f9663f90

View File

@@ -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.