lua-users home
lua-l archive

[Date Prev][Date Next][Thread Prev][Thread Next] [Date Index] [Thread Index]


Have y'all noticed how pretty much all sorting algorithms rely on length?

Are there any sorting algorithms that aren't explicitly aware of the sequence/array length, and instead just happen to produce a sorted array? (i.e. a sorting algorithm that doesn't rely on # or manual length calculations, and doesn't explicitly try to find the boundary where the array ends.)

Even the current Lua sorting algorithm uses the table length. Would be interesting if there was a sorting algorithm about as fast as Lua's current sorting algorithm, but without relying on length.

--
Disclaimer: these emails may be made public at any given time, with or without reason. If you don't agree with this, DO NOT REPLY.