Skip to content

Commit 67f93af

Browse files
Update sorting/quick_sort_iterative.cpp
Co-authored-by: realstealthninja <[email protected]>
1 parent 6ab9e08 commit 67f93af

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

sorting/quick_sort_iterative.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,12 @@
1616
#include <algorithm> /// for std::is_sorted
1717
#include <cassert> /// for assert
1818

19+
20+
/**
21+
* @namespace sorting
22+
* @brief Sorting algorithms
23+
*/
24+
namespace sorting {
1925
/**
2026
* @brief The partition function sorts the array from
2127
* start to end and uses the last element as the pivot.

0 commit comments

Comments
 (0)