79691092

Date: 2025-07-05 14:08:03
Score: 2
Natty:
Report link

I made an algorythm that uses the probability distribution. And while technically O(n), it is simply always slower than quick sort. That is because at low amounts of n it simply has a bigger constant multiplier and at higher n's it has the same issue as counting sort since it can't use the cache like quick sort, so each memory access becomes slower the higher a cache level it uses. That and the fact that it realistically never gets better than O(nlog(log(n))) is why it is simply not good.

Reasons:
  • No code block (0.5):
  • Single line (0.5):
  • Low reputation (1):
Posted by: Per