You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
An original adaptive sorting algorithm. Learns the input's value distribution from a small sample, uses that model to predict where each element belongs, places everything in one pass, then fixes the few prediction errors.
🔢 An optimized C data-sorting pipeline that resolves constrained stack sorting puzzles within strict operation count limits using runtime selection across O(n²), O(n√n), O(n log n), and a custom disorder-adaptive sorting algorithm.