快速排序

摘要: package com;import java.util.ArrayList;import java.util.List;import java.util.Random;public class QuickSort {public static void main(String[] args) {List<Integer> iList = new ArrayList<Integer>();//添加1000个随机数for (int i = 0; i < 1000; i++) {iList.add(new Random().nextInt(100));}for (in 阅读全文
posted @ 2012-05-11 10:33 冰瞳、 阅读(82) 评论(0) 推荐(0)