Binary Quick Sort is a variant of Quick Sort that partitions the array based on a binary bit at a specific position, efficiently sorting integers in-place using bitwise comparisons.
Paradigm
Quick / Binary Partition
Author
Computer Scientists
Tier
Time Complexity
Best
Avg
Worst
Space
O(log n)
Properties