package com.practice1; import java.util.ArrayList; import java.util.Collections; import java.util.List; import java.util.Random; /* * 创建List<String>并往其中添加十条随机字符串 * 每天字符串长度为10以内的随机数 * 每条字符串的每个字符是随机生成的字符,字符可以重置 * 每条随机字符串不可重复 */ public class CollectionSortTest { Random random = new Random(); List<String> ls = new ArrayList<String>(); /* * 生成List<String>数组 */ public void createList() { int k=0; String str="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789"; //生成10条随机字符串 while(k<10) { //定义每个字符串的随机长度 int strLong; do { strLong = random.nextInt(10); }while(strLong==0); //随机生成strLong长度的char StringBuffer sb = new StringBuffer(); for(int i=0;i<strLong;i++) { int num = random.nextInt(62); sb.append(str.charAt(num)); } do { ls.add(sb.toString()); k++; }while(!ls.contains(sb.toString())); } System.out.println("已生成"+ls.size()+"条元素"); System.out.println("--------排序前--------"); for(String str1 : ls) { System.out.println(str1); } } public void listSort() { Collections.sort(ls); System.out.println("--------排序后--------"); for(String str1 : ls) { System.out.println(str1); } } public static void main(String[] args) { CollectionSortTest cs = new CollectionSortTest(); cs.createList(); cs.listSort(); } }
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦