scandum/gridsortThis document describes a partitioning stable adaptive comparison-based sort named gridsort. Gridsort sorts data by storing data in a simplified binary cube, a multidimentional sorted array. The binary cube offers excellent cache utilization. It's easiest to view a binary cube as a hash table, but instead of a hash function to find a bucket it uses a binary search on a lookup table.https://github.com/scandum/gridsort