We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a78b62c commit e279be5Copy full SHA for e279be5
sorting/quick_sort_iterative.cpp
@@ -99,7 +99,7 @@ void tests()
99
std::cout<<"Before: \n";
100
for(auto x : case1) std::cout<<x<<",";
101
std::cout<<"\n";
102
- iterativeQuickSort(case1);
+ sorting::iterativeQuickSort(case1);
103
assert(std::is_sorted(std::begin(case1),std::end(case1)));
104
std::cout<<"Test 1 succesful!\n";
105
std::cout<<"After: \n";
@@ -112,7 +112,7 @@ void tests()
112
113
for(auto x : case2) std::cout<<x<<",";
114
115
- iterativeQuickSort(case2);
+ sorting::iterativeQuickSort(case2);
116
assert(std::is_sorted(std::begin(case2),std::end(case2)));
117
std::cout<<"Test 2 succesful!\n";
118
0 commit comments