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
The extra::sort module can be removed when this is done. A simple merge sort making use of insertion sort for small runs is good enough for everyone! Since it will be simple, making use of some unsafe code for speed will be fine.
If allocation isn't acceptable, PriorityQueue can be leveraged to do an in-place heap sort and will likely end up in std too.
The text was updated successfully, but these errors were encountered:
The
extra::sort
module can be removed when this is done. A simple merge sort making use of insertion sort for small runs is good enough for everyone! Since it will be simple, making use of someunsafe
code for speed will be fine.If allocation isn't acceptable,
PriorityQueue
can be leveraged to do an in-place heap sort and will likely end up instd
too.The text was updated successfully, but these errors were encountered: