Quick_sort_in sorting (#224)

* Update 01_dijkstras_algorithm.go

* Create Test_report.binary_quick_sort.cpp.docx

* 1

fix

* fix it better
This commit is contained in:
phunghocong
2022-11-19 05:52:21 +07:00
committed by GitHub
parent fb4e268804
commit 73e5711b73
3 changed files with 67 additions and 46 deletions

View File

@@ -21,4 +21,4 @@ function quicksort(array) {
return quicksort(less).concat([pivot], quicksort(greater));
}
console.log(quicksort([10, 5, 2, 3])); // [2, 3, 5, 10]
console.log(quicksort([10, 5, 2, 3]));