摘要: 最近有些懒,好久没写代码了,现在写个快排练练手吧。public class QucikSort { //此处交换两个数 public static void swap(int a[],int low,int high) { int temp=a[low]; a[low]=a[high]; a[... 阅读全文
posted @ 2014-08-24 20:16 hansongjiang8 阅读(134) 评论(0) 推荐(0) 编辑