摘要: 1 package iYou.neugle.sort; 2 3 public class Quick_sort { 4 public static void QuickSort(double[] array, int left, int right) { 5 if (le... 阅读全文
posted @ 2015-06-08 11:56 iYou 阅读(159) 评论(0) 推荐(0) 编辑
摘要: 1 package iYou.neugle.sort; 2 3 public class Select_sort { 4 public static void SelectSort(double[] array) { 5 for (int i = 0; i array[... 阅读全文
posted @ 2015-06-08 11:55 iYou 阅读(137) 评论(0) 推荐(0) 编辑