继续浏览精彩内容
慕课网APP
程序员的梦工厂
打开
继续
感谢您的支持,我会继续努力的
赞赏金额会直接到老师账户
将二维码发送给自己后长按识别
微信支付
支付宝支付

Java入门第三季_Collections随机字符串排序

FieldingLiu
关注TA
已关注
手记 1
粉丝 3
获赞 8
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Random;
public class CollectionsTest {
/**
     * 返回随机字符a-z,A-Z,0-9
     */
    public char getRandomCharacter() {
        Random random = new Random();
        int number = random.nextInt(3);
        char result = ' ';
        //随机生成字符的类型
        switch (number) {
            case 0:
                result = (char) ((int) (Math.random() * 26 + 65));

                break;
            case 1:
                result = (char) ((int) (Math.random() * 26 + 97));

                break;
            case 2:
                result = (char) ((int) (Math.random() * 10 + 48));

                break;
            default:
                getRandomCharacter();
        }
        return result;
    }
/**
     * 1.创建完List<String>后,往其中添加10条随机字符串
     * 2.每条字符串长度为10以内的整数
     * 3.每条字符串的每个字符随机生成且可以重复
     * 4.但是每条字符串都不相同
     */
    public void testStringCollectionsSort2() {
        List<String> stringList = new ArrayList<String>();
        Random random = new Random();
        //生成10条随机字符串
        for (int i = 0; i < 10; i++) {
            //每条字符串长度10以内
            int length = random.nextInt(10);
            //初始的字符串
            String randomString = " ";
            do {
                //往初始字符串里添加字符
                while (length > 0) {
                    randomString += getRandomCharacter();
                    length--;
                }
            } while (stringList.contains(randomString));
            stringList.add(randomString);

        }
        System.out.println("-------排序前-------");
        for (String string : stringList) {
            System.out.println("随机字符串:" + string);
        }
        Collections.sort(stringList);
        System.out.println("-------排序后-------");
        for (String string : stringList) {
            System.out.println("随机字符串:" + string);
        }
    }
public static void main(String[] args) {
        CollectionsTest ct = new CollectionsTest();
        //ct.testIntegerCollectionsSort();
        //ct.testStringCollectionsSort1();
        ct.testStringCollectionsSort2();
        //System.out.println(ct.getRandomCharacter());
    }
}
打开App,阅读手记
2人推荐
发表评论
随时随地看视频慕课网APP