This repository contains implementations and analysis of four classic divide-and-conquer algorithms: MergeSort, QuickSort, Deterministic Select (Median-of-Medians), and Closest Pair of Points. All ...
I need to find Q1, Q3 and the median on large containers, and parallel sorting doesn't exactly scale. I am wondering if it would be possible to extend rayon to also have the median of median algorithm ...