diff --git a/hashing/quadratic_probing_hash_table.cpp b/hashing/quadratic_probing_hash_table.cpp index 55dfd681b..7af55914f 100644 --- a/hashing/quadratic_probing_hash_table.cpp +++ b/hashing/quadratic_probing_hash_table.cpp @@ -2,7 +2,9 @@ * @file * @author [achance6](https://github.com/achance6) * @author [Krishna Vedala](https://github.com/kvedala) - * @brief + * @brief Storage mechanism using [quadratic probing + * hash](https://en.wikipedia.org/wiki/Quadratic_probing) keys. + * @note The implementation can be optimized by using OOP style. */ #include #include