Skip to content

Commit b968549

Browse files
Update sorting/quick_sort_iterative.cpp
1 parent 6a76f9f commit b968549

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

sorting/quick_sort_iterative.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@
1010
* @author Sebe324 (https://github.com/sebe324)
1111
*/
1212

13-
#include <iostream> //for std::cout
14-
#include <vector> //for std::vector
15-
#include <stack> //for std::stack
16-
#include <algorithm> //for std::is_sorted
17-
#include <cassert> //for assert
13+
#include <iostream> /// for std::cout
14+
#include <vector> /// for std::vector
15+
#include <stack> /// for std::stack
16+
#include <algorithm> ///for std::is_sorted
17+
#include <cassert> /// for assert
1818

1919
/**
2020
* @brief The partition function sorts the array from

0 commit comments

Comments
 (0)