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

第三季6.5collections.sort习题

标签:
Java

package com.imooc.collection;

import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Random;

public class CollectionsTest
{
public void testSortP()
{
List<String>str=new ArrayList<String>();
String strr[] = { "a", "b", "c", "d", "e", "f", "g", "h", "i",
"j", "k", "l", "m", "n", "o", "p", "q", "r", "s", "t", "u",
"v", "w", "x", "y", "z", "A", "B", "C", "D", "E", "F", "G",
"H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S",
"T", "U", "V", "W", "X", "Y", "Z", "0", "1", "2", "3", "4",
"5", "6", "7", "8", "9" };

for(int j=0;j<10;j++)
{
  String finalString=" ";
  int len=(int)((Math.random()*10)+1);
  for(int i=0;i<len;i++)
  {
     String finalString=" ";
  int len=(int)((Math.random()*10)+1);
  for(int i=0;i<len;i++)
  {
      int lens=(int)(Math.random()*62);
          do{finalString+=strr[lens];}
          while(str.contains(finalString));

  }   
  str.add(finalString);

  }   
  str.add(finalString);
}

  for(String string:str)
  {
      System.out.println("Pre-sort random string is: "+ string);
  }

  Collections.sort(str);

  for(String string:str)
  {
      System.out.println("Post-sort random string is: "+ string);
  }

}

public static void main(String[] args)
{
    CollectionsTest ct=new CollectionsTest();
    ct.testSortP();

}

}

点击查看更多内容
TA 点赞

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

评论

作者其他优质文章

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

100积分直接送

付费专栏免费学

大额优惠券免费领

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

举报

0/150
提交
取消