phaser
Version:
A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.
117 lines (100 loc) • 2.83 kB
JavaScript
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2013-2023 Photon Storm Ltd.
* @license {@link https://opensource.org/licenses/MIT|MIT License}
*/
/**
* @ignore
*/
function swap (arr, i, j)
{
var tmp = arr[i];
arr[i] = arr[j];
arr[j] = tmp;
}
/**
* @ignore
*/
function defaultCompare (a, b)
{
return a < b ? -1 : a > b ? 1 : 0;
}
/**
* A [Floyd-Rivest](https://en.wikipedia.org/wiki/Floyd%E2%80%93Rivest_algorithm) quick selection algorithm.
*
* Rearranges the array items so that all items in the [left, k] range are smaller than all items in [k, right];
* The k-th element will have the (k - left + 1)th smallest value in [left, right].
*
* The array is modified in-place.
*
* Based on code by [Vladimir Agafonkin](https://www.npmjs.com/~mourner)
*
* @function Phaser.Utils.Array.QuickSelect
* @since 3.0.0
*
* @param {array} arr - The array to sort.
* @param {number} k - The k-th element index.
* @param {number} [left=0] - The index of the left part of the range.
* @param {number} [right] - The index of the right part of the range.
* @param {function} [compare] - An optional comparison function. Is passed two elements and should return 0, 1 or -1.
*/
var QuickSelect = function (arr, k, left, right, compare)
{
if (left === undefined) { left = 0; }
if (right === undefined) { right = arr.length - 1; }
if (compare === undefined) { compare = defaultCompare; }
while (right > left)
{
if (right - left > 600)
{
var n = right - left + 1;
var m = k - left + 1;
var z = Math.log(n);
var s = 0.5 * Math.exp(2 * z / 3);
var sd = 0.5 * Math.sqrt(z * s * (n - s) / n) * (m - n / 2 < 0 ? -1 : 1);
var newLeft = Math.max(left, Math.floor(k - m * s / n + sd));
var newRight = Math.min(right, Math.floor(k + (n - m) * s / n + sd));
QuickSelect(arr, k, newLeft, newRight, compare);
}
var t = arr[k];
var i = left;
var j = right;
swap(arr, left, k);
if (compare(arr[right], t) > 0)
{
swap(arr, left, right);
}
while (i < j)
{
swap(arr, i, j);
i++;
j--;
while (compare(arr[i], t) < 0)
{
i++;
}
while (compare(arr[j], t) > 0)
{
j--;
}
}
if (compare(arr[left], t) === 0)
{
swap(arr, left, j);
}
else
{
j++;
swap(arr, j, right);
}
if (j <= k)
{
left = j + 1;
}
if (k <= j)
{
right = j - 1;
}
}
};
module.exports = QuickSelect;