Skip to content

Commit 1fa4d35

Browse files
Update sorting/quick_sort.cpp
Co-authored-by: realstealthninja <[email protected]>
1 parent 576fce6 commit 1fa4d35

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sorting/quick_sort.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ namespace quick_sort {
5959
* Worst Case: O(n^2) (Worst case occur when the partition
6060
* is consistently unbalanced.)
6161
62-
* Space Complexity
62+
* ### Space Complexity
6363
* average Case: O(log(n))
6464
* Worst Case: O(n)
6565
* It's space complexity is due to the recursive function calls and partitioning process.

0 commit comments

Comments
 (0)