Java中的快速排序算法
2021-02-15 01:17
标签:sort java print col nbsp 递归 div 相等 turn Java中的快速排序算法 标签:sort java print col nbsp 递归 div 相等 turn 原文地址:https://www.cnblogs.com/suyun0702/p/12673452.htmlpublic static void quicksort(int[] array,int low,int high)
{
if(low > high)
{
return;
}
int i=low;
int j=high;
int temp = array[low];//temp就是基准位
while(ij)
{
while(temp //先看右边,依次往左递减
{
j--;
}
while(temp >= array[i] && i