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
{{ message }}
This repository has been archived by the owner on Jul 27, 2024. It is now read-only.
DropSort this one actually is not a valid sorting algorithm; but there is one slightly different version that's usable at the bottom of the site.
Now the ones that will like never be implemented for various reasons
Gravity/Bead Sort this one changes the values of items, which is impossible using my API. I suggest reading the wikipedia article on it, as it's very interesting.
Pigeonhole Sort this one just creates a bucket for every number in the range and the puts the items in there accordingly and then puts them back in the original bucket – not generally that bad, but very much so in this program, as it's not designed to handle more than 20 buckets. It already struggles with 10. Technically its possible to implement, but I don't want to crash peoples PCs. I could possibly implement a In-Place version, but that'd look like magic 😅
The text was updated successfully, but these errors were encountered:
I will try to translate the one by @thatsOven into a version that works with BASAV - ofc I will include the license and links to the original repo and its contributors. I have found a few places where there is extra attention needed - for example, there is a section that copies items without swaps or insertions, which is not supported by BASAV, but I'm sure I can sort that out.
I also see that the implementation isn't complete yet, so if I can, I will help finalize that.
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Now the really really bad ones. These actually exist. Mostly for fun, so these are mostly simple.
this one actually is not a valid sorting algorithm; but there is one slightly different version that's usable at the bottom of the site.
Now the ones that will like never be implemented for various reasons
this one changes the values of items, which is impossible using my API. I suggest reading the wikipedia article on it, as it's very interesting.
this one just creates a bucket for every number in the range and the puts the items in there accordingly and then puts them back in the original bucket – not generally that bad, but very much so in this program, as it's not designed to handle more than 20 buckets. It already struggles with 10. Technically its possible to implement, but I don't want to crash peoples PCs.
I could possibly implement a In-Place version, but that'd look like magic 😅
The text was updated successfully, but these errors were encountered: