随机产生10个数,并每个数给定一个序号,然后将这10个数按照从小到大的顺序输出来,并带上序号输出
面试中经常遇到的问题。
public class RandomSortTest { public static void main(String[] args) { printRandomBySort(); } public static void printRandomBySort() { Random random = new Random(); // 创建随机数生成器 List list = new ArrayList(); // 生成10 个随机数,并放在集合list 中 for (int i = 0; i < 10; i++) { list.add(random.nextInt(1000)); } Collections.sort(list); // 对集合中的元素进行排序 Iterator it = list.iterator(); int count = 0; while (it.hasNext()) { // 顺序输出排序后集合中的元素 System.err.print(++count + ":" + it.next()+" ;"); } } }
yian