I am looking for a code for the graphical version of Bucket sort method that shows each value being placed into the appropriate bucket and eventually being copied back to the original array.
Thank you
Printable View
I am looking for a code for the graphical version of Bucket sort method that shows each value being placed into the appropriate bucket and eventually being copied back to the original array.
Thank you
Bucket sort? never heard, want to explain it?
Never heard of a bucket sort before. Ive heard of shell sorts, bubble sorts ect.... :confused: :p
i think a rough explanation is you throw the items into different 'buckets' so they are roughly in the same area. You can then sort each of these buckets (if you want/need) and then concatenate them back into a list.
hmmm that makes alot of sense... :D
nist has a page on it...
http://www.nist.gov/dads/HTML/bucketsort.html