随笔分类 -  数据结构和算法

摘要:package algorithm.sort;public class HeapSort { public static void main(String[] args) { int[] a = new int[] {5, 3, 7, 2, 1, 4, 9, 8, 6, 1}; sort(a); p... 阅读全文
posted @ 2014-04-30 21:32 土豆俗称地蛋 阅读(114) 评论(0) 推荐(0)
摘要:package algorithm.sort;public class CountingSort { public static void main(String[] args) { int[] a = new int[] {5, 3, 7, 2, 1, 4, 9, 8, 6, 1}; int[] ... 阅读全文
posted @ 2014-04-30 21:30 土豆俗称地蛋 阅读(93) 评论(0) 推荐(0)
摘要:package algorithm.sort;public class QuickSort { public static void main(String[] args) { int[] a = new int[] {5, 3, 7, 2, 1, 4, 9, 8, 6, 1}; sort(a); ... 阅读全文
posted @ 2014-04-30 21:24 土豆俗称地蛋 阅读(105) 评论(0) 推荐(0)