赞
踩
算法介绍:快速排序是对冒泡排序的一种改进。
算法思想:
算法图解:
代码实现:
import java.util.Arrays; public class QuickSort { public static void main(String args[]){ int[] arr = { -9,78,0,23,-567,70,-1,900,4561}; quickSort(arr,0,arr.length-1); System.out.println(Arrays.toString(arr)); } public static void quickSort(int[] arr,int low,int high){ int i,j,temp,swap; if(low>high){ return;
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。