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

第三季6.5collections.sort习题

慕神3859940
关注TA
已关注
手记 3
粉丝 1
获赞 16

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();

}

}

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