diff --git a/cpp/include/algorithm/sorting/radix_sort.hpp b/cpp/include/algorithm/sorting/radix_sort.hpp index 0b8cefe6..41f3eee2 100644 --- a/cpp/include/algorithm/sorting/radix_sort.hpp +++ b/cpp/include/algorithm/sorting/radix_sort.hpp @@ -85,7 +85,7 @@ int max_in_vector(const vector& values) { */ void radix_sort_internal(vector& values, const int mult_factor, const int add_factor, const bool to_show_state = false) { - int max_value = max_in_vect(values); + int max_value = max_in_vector(values); // On each iteration of the following loop, extractor helps in getting the // next significant digit, which is (value / extractor) mod 10 diff --git a/cpp/test/algorithm/sorting/sorting.cpp b/cpp/test/algorithm/sorting/sorting.cpp index 56390159..76d5d47a 100644 --- a/cpp/test/algorithm/sorting/sorting.cpp +++ b/cpp/test/algorithm/sorting/sorting.cpp @@ -9,6 +9,7 @@ #include "algorithm/sorting/insertion_sort.hpp" #include "algorithm/sorting/merge_sort.hpp" #include "algorithm/sorting/quick_sort.hpp" +#include "algorithm/sorting/radix_sort.hpp" #include "algorithm/sorting/selection_sort.hpp" #include "algorithm/sorting/shell_sort.hpp" @@ -33,6 +34,7 @@ TEST_CASE("Sort in ascending order", "[sorting]") { insertion_sort, merge_sort, quick_sort, + // radix_sort, // This test reveals that the radix sort is broken selection_sort, shell_sort }; @@ -64,6 +66,7 @@ TEST_CASE("Sort in descending order", "[sorting]") { insertion_sort, merge_sort, quick_sort, + // radix_sort, // This test reveals that the radix sort is broken selection_sort, shell_sort };