2011年10月7日
摘要: package ts;public class QuickSoft { public static void main(String[] args) { int[] nums = new int[100000]; for (int i = 0; i < nums.length; i++) { nums[i] = (int) (100 * Math.random()); } long a = System.currentTimeMillis(); quickSoft(nums, 0, nums.length - 1); System.out.println("qu... 阅读全文
posted @ 2011-10-07 15:57 在大地画满窗子 阅读(207) 评论(0) 推荐(0) 编辑