摘要: 1 public static void Main() 2 { 3 int[] a={5,3,5,2,8,27,1,38,25,65,1}; 4 5 QuickSort(ref a,0,a.Length); 6 7 8 //Console.WriteLine("Hello... 阅读全文
posted @ 2018-07-23 17:52 阿愿 阅读(94) 评论(0) 推荐(0)
摘要: 1 public static void Main() 2 { 3 int[] a={5,3,5,2,8,27,1,38,25,65,1}; 4 for(int i=0;i<a.Length;i++) 5 { 6 for(int j=i;j<a.Length;j++) 7 { 8 ... 阅读全文
posted @ 2018-07-23 16:51 阿愿 阅读(80) 评论(0) 推荐(0)