implemented frontend including separate message system; started to implement backend
This commit is contained in:
103
yjs-poll/node_modules/lib0/dist/sort-812cc211.cjs
generated
vendored
Normal file
103
yjs-poll/node_modules/lib0/dist/sort-812cc211.cjs
generated
vendored
Normal file
@@ -0,0 +1,103 @@
|
||||
'use strict';
|
||||
|
||||
var math = require('./math-96d5e8c4.cjs');
|
||||
|
||||
/**
|
||||
* Efficient sort implementations.
|
||||
*
|
||||
* Note: These sort implementations were created to compare different sorting algorithms in JavaScript.
|
||||
* Don't use them if you don't know what you are doing. Native Array.sort is almost always a better choice.
|
||||
*
|
||||
* @module sort
|
||||
*/
|
||||
|
||||
/**
|
||||
* @template T
|
||||
* @param {Array<T>} arr
|
||||
* @param {number} lo
|
||||
* @param {number} hi
|
||||
* @param {function(T,T):number} compare
|
||||
*/
|
||||
const _insertionSort = (arr, lo, hi, compare) => {
|
||||
for (let i = lo + 1; i <= hi; i++) {
|
||||
for (let j = i; j > 0 && compare(arr[j - 1], arr[j]) > 0; j--) {
|
||||
const tmp = arr[j];
|
||||
arr[j] = arr[j - 1];
|
||||
arr[j - 1] = tmp;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* @template T
|
||||
* @param {Array<T>} arr
|
||||
* @param {function(T,T):number} compare
|
||||
* @return {void}
|
||||
*/
|
||||
const insertionSort = (arr, compare) => {
|
||||
_insertionSort(arr, 0, arr.length - 1, compare);
|
||||
};
|
||||
|
||||
/**
|
||||
* @template T
|
||||
* @param {Array<T>} arr
|
||||
* @param {number} lo
|
||||
* @param {number} hi
|
||||
* @param {function(T,T):number} compare
|
||||
*/
|
||||
const _quickSort = (arr, lo, hi, compare) => {
|
||||
if (hi - lo < 42) {
|
||||
_insertionSort(arr, lo, hi, compare);
|
||||
} else {
|
||||
const pivot = arr[math.floor((lo + hi) / 2)];
|
||||
let i = lo;
|
||||
let j = hi;
|
||||
while (true) {
|
||||
while (compare(pivot, arr[i]) > 0) {
|
||||
i++;
|
||||
}
|
||||
while (compare(arr[j], pivot) > 0) {
|
||||
j--;
|
||||
}
|
||||
if (i >= j) {
|
||||
break
|
||||
}
|
||||
// swap arr[i] with arr[j]
|
||||
// and increment i and j
|
||||
const arri = arr[i];
|
||||
arr[i++] = arr[j];
|
||||
arr[j--] = arri;
|
||||
}
|
||||
_quickSort(arr, lo, j, compare);
|
||||
_quickSort(arr, j + 1, hi, compare);
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* This algorithm beats Array.prototype.sort in Chrome only with arrays with 10 million entries.
|
||||
* In most cases [].sort will do just fine. Make sure to performance test your use-case before you
|
||||
* integrate this algorithm.
|
||||
*
|
||||
* Note that Chrome's sort is now a stable algorithm (Timsort). Quicksort is not stable.
|
||||
*
|
||||
* @template T
|
||||
* @param {Array<T>} arr
|
||||
* @param {function(T,T):number} compare
|
||||
* @return {void}
|
||||
*/
|
||||
const quicksort = (arr, compare) => {
|
||||
_quickSort(arr, 0, arr.length - 1, compare);
|
||||
};
|
||||
|
||||
var sort = /*#__PURE__*/Object.freeze({
|
||||
__proto__: null,
|
||||
_insertionSort: _insertionSort,
|
||||
insertionSort: insertionSort,
|
||||
quicksort: quicksort
|
||||
});
|
||||
|
||||
exports._insertionSort = _insertionSort;
|
||||
exports.insertionSort = insertionSort;
|
||||
exports.quicksort = quicksort;
|
||||
exports.sort = sort;
|
||||
//# sourceMappingURL=sort-812cc211.cjs.map
|
||||
Reference in New Issue
Block a user