Stats
Implementations
Fluxsort is a modern hybrid comparison-based sorting algorithm designed as an improvement over Quicksort. It uses adaptive partitioning and cache-friendly techniques to achieve excellent real-world performance while maintaining O(n log n) worst-case complexity.
Paradigm
Hybrid / Divide and Conquer
Author
Igor van den Hoven
Tier
ATime Complexity
Best
O(n)Avg
O(n log n)Worst
O(n log n)Space
O(log n)Properties