SIGN IN SIGN UP

Algorithms and Data Structures implemented in JavaScript for beginners, following best practices.

34088 0 0 JavaScript
2020-10-31 17:33:26 +02:00
/*
* Places the `k` smallest elements in `array` in the first `k` indices: `[0..k-1]`
* Modifies the passed in array *in place*
* Returns a slice of the wanted elements for convenience
* Efficient mainly because it never performs a full sort.
*
* The only guarantees are that:
*
* - The `k`th element is in its final sort index (if the array were to be sorted)
* - All elements before index `k` are smaller than the `k`th element
*
* [Reference](http://en.wikipedia.org/wiki/Quickselect)
*/
export function quickSelectSearch(array, k) {
2020-10-31 17:33:26 +02:00
if (!array || array.length <= k) {
2020-10-31 17:53:08 +02:00
throw new Error('Invalid arguments')
2020-10-31 17:33:26 +02:00
}
2020-10-31 17:53:08 +02:00
let from = 0
let to = array.length - 1
2020-10-31 17:33:26 +02:00
while (from < to) {
2020-10-31 17:53:08 +02:00
let left = from
let right = to
const pivot = array[Math.ceil((left + right) * 0.5)]
2020-10-31 17:33:26 +02:00
while (left < right) {
if (array[left] >= pivot) {
2020-10-31 17:53:08 +02:00
const tmp = array[left]
array[left] = array[right]
array[right] = tmp
--right
2020-10-31 17:33:26 +02:00
} else {
2020-10-31 17:53:08 +02:00
++left
2020-10-31 17:33:26 +02:00
}
}
if (array[left] > pivot) {
2020-10-31 17:53:08 +02:00
--left
2020-10-31 17:33:26 +02:00
}
if (k <= left) {
2020-10-31 17:53:08 +02:00
to = left
2020-10-31 17:33:26 +02:00
} else {
2020-10-31 17:53:08 +02:00
from = left + 1
2020-10-31 17:33:26 +02:00
}
}
2020-10-31 17:53:08 +02:00
return array
2020-10-31 17:33:26 +02:00
}
/* ---------------------------------- Test ---------------------------------- */
// const arr = [1121111, 21, 333, 41, 5, 66, 7777, 28, 19, 11110]
// quickSelectSearch(arr, 5) // [ 19, 21, 28, 41, 5, 66, 333, 11110, 1121111, 7777 ]
// quickSelectSearch(arr, 2) // [ 19, 5, 21, 41, 28, 333, 11110, 1121111, 7777, 66 ]
// quickSelectSearch(arr, 7) // [ 19, 5, 21, 41, 28, 66, 333, 7777, 11110, 1121111 ]