原课程地址https://www.imooc.com/video/4254
* 扩展练习要求 * 利用Collections.sort()方法对泛型为String的List进行排序版本2 * 1.创建完List<String>之后,往其中添加10条随机字符串 * 2.每条字符串的长度为10以内的随机整数 * 3.每条字符串的每个字符都是随机生成的,字符可重复 * 4.每条随机字符串不可重复 下面是我写的方法,需要放入一个测试类中,并在main函数中运行。 (Collections.sort()自然排序是按照ASCII值排序) 运行结果: -----------------排序前------------------ Qa6gcd IMK qU6m oeBJZ P XcpN u0CY AdRsq CvP 8D7i -----------------排序后------------------ 8D7i AdRsq CvP IMK P Qa6gcd XcpN oeBJZ qU6m u0CY
public void testSort2() { List<String> stringList = new ArrayList<String>(); Random r = new Random(); String str = "0123456789QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm"; for(int i=0; i<10; i++){ String strNew = new String(); do{ strNew = ""; for(int j=0; j<r.nextInt(10)+1; j++){ strNew+=str.charAt(r.nextInt(str.length())); } }while(stringList.contains(strNew)); stringList.add(strNew); } System.out.println("-----------------排序前------------------"); for(String string:stringList){ System.out.print(string+" "); } Collections.sort(stringList); System.out.println(); System.out.println("-----------------排序后------------------"); for(String string:stringList){ System.out.print(string+" "); } }
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦