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

创建10条随机长度的随机字符串并排序

真废柴假现充
关注TA
已关注
手记 2
粉丝 0
获赞 4
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();
}
}


打开App,阅读手记
0人推荐
发表评论
随时随地看视频慕课网APP