摘要:
package sort;public class Sort1 { public static void main(String[] args) { int[] a = { 2, 54, 23, 57, 72, 3, 46, 7, 8, 20, 324, 32, 1 }; InsertSort(...
阅读全文
posted @ 2014-10-15 20:21
群.
阅读(107)
推荐(0)
摘要:
package sort;public class Sort2 { public static void main(String[] args) { int[] a = { 2, 54, 23, 57, 72, 3, 46, 7, 8, 20, 324, 32, 1 }; SelectSort(...
阅读全文
posted @ 2014-10-15 20:20
群.
阅读(140)
推荐(0)
摘要:
package sort;public class Sort3 { public static void main(String[] args) { int[] a = { 2, 54, 23, 57, 72, 3, 46, 7, 8, 20, 324, 0, 32, 1 }; UpSort(a...
阅读全文
posted @ 2014-10-15 20:16
群.
阅读(97)
推荐(0)