Quick Sortの実装は少し難しいですが、それを理解して練習を続けると、それは簡単になります。
const Quicksort =(arr、lo、hi)=> {
if(lo> = hi){
戻る ;
}
const pivotindex = getPivotIndex(arr、lo、hi);
QuickSort(arr、lo、pivotindex-1);
QuickSort(arr、pivotindex 1、hi);
}
const getPivotIndex =(arr、lo、hi)=> {
const pivot = arr [hi];
idx = lo-1とします。
for(let i = lo; i
const quickSort = (arr, lo, hi) => {
if (lo >= hi) {
return ;
}
const pivotIndex = getPivotIndex(arr, lo, hi);
quickSort(arr, lo, pivotIndex-1);
quickSort(arr, pivotIndex 1, hi);
}
const getPivotIndex = (arr, lo, hi) => {
const pivot = arr[hi];
let idx = lo-1;
for (let i = lo; iそれを乾燥させてみてくださいあなたは明確な画像を得るでしょう。