为了账号安全,请及时绑定邮箱和手机立即绑定

6-5 应用 Collections.sort() 实现 List 排序

标签:
Java
/***
     * 利用Collections.sort()方法对泛型为String的List进行排序
     * 1.创建List<String>之后,往其中添加十条随机字符串
     * 2.每条字符串的长度为10以内的随机整数
     * 3.每条字符串的每个字符都为随机生成的字符,字符可以重复
     * 4.每条随机字符串不可重复
     */
    public void testSort3() {
        List<String> strList = new ArrayList<>();
        String str;
        for(int i=0; i<10; i++) {
            do {
                str = addString();
            }while(strList.contains(str));
            strList.add(str);
            System.out.println("成功添加了字符串:"+str);
        }
        System.out.println("----------------------排序前-----------------------");
        int index = 1;
        for (String string : strList) {
            System.out.println("第"+(index++)+"个字符串:"+string);
        }
        Collections.sort(strList);
        index = 1;
        System.out.println("----------------------排序后-----------------------");
        for (String string : strList) {
            System.out.println("第"+(index++)+"个字符串:"+string);
        }
    }
    public String addString() {
        String seed = "QWERTYUIOPASDFGHJKLZXCVBNM0147258369qwertyuiopasdfghjklzxcvbnm";
        StringBuilder sb = new StringBuilder();
        Random random = new Random();
        int length = random.nextInt(10)+1;//生成字符串长度
        for(int i=0; i<length; i++) {
            int index = random.nextInt(seed.length()); //生成索引位置
            sb.append(seed.charAt(index));
        }
        return sb.toString();
    }

图片描述

点击查看更多内容
1人点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消