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

利用Collections.sort()方法对泛型为String的List进行排序(Java)

Dully_0001
关注TA
已关注
手记 1
粉丝 0
获赞 3

package demo.collection;

import java.util.*;

/**

  • 将要完成:
  • 1.通过Collections.sort()方法,对Integer泛型的List进行排序;
  • 2.对String泛型的List进行排序;
  • 3.对其他类型泛型的List进行排序,以Student为例。
    */
    public class CollectionsTest {

    /**3.

    • List<String>,往其中添加10条随机的字符串
    • 每条字符串的长度为10以内的随机整数
    • 每条字符串的每个字符都为随机生成的字符,字符可以重复
    • 每条随机字符串不能重复*/
      public void testSort3() {
      List<String> stringList = new ArrayList<String>();
      String base = "abcdefghijklmnopqrstuvwxyz0123456789";
      StringBuffer sb;
      Random random = new Random();
      int length;//随机字符串的长度

      for (int i = 0; i < 10; i++) {
      // 每条字符串的长度为10以内的随机整数
      length = random.nextInt(10);
      // System.out.println("lenth:" + length);
      sb = new StringBuffer();
      // 每条字符串的每个字符都为随机生成的字符,字符可以重复
      for (int j = 0; j < length; j++) {
      sb.append(base.charAt(random.nextInt(length)));
      }
      //如果sb重复,这跳出本次循环
      if(stringList.contains(sb)) {
      continue;
      }//不重复,就添加到 stringList去
      else {
      System.out.println("将要添加字符串:' " + sb.toString() + " ',它的长度为:" + length);
      stringList.add(sb.toString());
      }

      }

      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.testSort3();
    }
    }

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