Diff Detail
Diff Detail
- Repository
- rS FreeBSD src repository - subversion
- Lint
Lint Skipped - Unit
Tests Skipped
Event Timeline
Comment Actions
Don't use insertion sort which is O(N*N)
Use hpsort instead which is O(log2(N)*log2(N)*N).
Differential D5241
Replace insertion sort with hpsort in our kernel's qsort() function. • hselasky on Feb 10 2016, 12:15 PM. Authored by Tags None Referenced Files
Subscribers
Diff Detail
Event TimelineComment Actions Don't use insertion sort which is O(N*N) Use hpsort instead which is O(log2(N)*log2(N)*N). |