Nested sorting class of array sorting algorithms
|
02-16-2020, 05:50 AM
Post: #2
|
|||
|
|||
RE: Nested sorting class of array sorting algorithms
This is equivalent (in the general case) to one of the merge sorts. These are as efficient as it gets with comparison based sorting. The binary version sorts a bunch of short arrays (or buckets) by whatever method is efficient for short arrays. Then the arrays are merged pairwise to grow their lengths. (If the starting arrays are differing size, merging from the smallest is best. This isn't usually mentioned.)
|
|||
« Next Oldest | Next Newest »
|
Messages In This Thread |
Nested sorting class of array sorting algorithms - Namir - 02-16-2020, 04:27 AM
RE: Nested sorting class of array sorting algorithms - ttw - 02-16-2020 05:50 AM
RE: Nested sorting class of array sorting algorithms - Paul Dale - 02-16-2020, 07:20 AM
RE: Nested sorting class of array sorting algorithms - Albert Chan - 02-16-2020, 12:42 PM
RE: Nested sorting class of array sorting algorithms - Namir - 02-16-2020, 05:08 PM
|
User(s) browsing this thread: 1 Guest(s)