bsyonline 2014/04/22 Comments Interview Data Structure and Algorithm 找到一个基准点,将数组分成两段,将左边大于基准点的数挪到右边,将右边小于基准点的数挪到左边使用递归时间复杂度为 O(n * logn) Bubble Sort Binary Search