You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Should be perf-tested whether there are any cases where the native implementation of the sorting algorithm significantly outperforms the self-hosted version. If not, quickSort should be deprecated and the algorithm used in sort. That way, the performance will also be more predictable and the algorithm deterministic (the self-hosted version uses first element as pivot so it's referentially transparent).
The text was updated successfully, but these errors were encountered:
Should be perf-tested whether there are any cases where the native implementation of the sorting algorithm significantly outperforms the self-hosted version. If not,
quickSort
should be deprecated and the algorithm used insort
. That way, the performance will also be more predictable and the algorithm deterministic (the self-hosted version uses first element as pivot so it's referentially transparent).The text was updated successfully, but these errors were encountered: