package balls;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Random;
public class sorttest {
public void testsort1(){
List<String>hehe= new ArrayList<String>();
Random random =new Random();
String str="QWERTYUIOPASDFGHJKLZXCVBNMqwertyuiopasdfghjklzxcvbnm1234567890";
for(int i =0; i<10;i++){
StringBuilder gg=new StringBuilder();
int len=random.nextInt(11);
do{
//k = random.next();
for(int j=0;j<len;j++){
gg=gg.append(str.charAt(random.nextInt(61)));
}
}while(hehe.contains(gg)&&len==0);
hehe.add(gg.toString());
System.out.println("success:"+hehe);
}
System.out.println("________Before Sorting_________");
for(String g:hehe){
System.out.println("element:"+g);
}
Collections.sort(hehe);
System.out.println("________After Sorting_________");
for(String a:hehe){
System.out.println("element:"+a);
}
}
public static void main(String[] args) {
// TODO Auto-generated method stub
sorttest shit = new sorttest();
shit.testsort1();
}
}
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦