博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【DataStructure】Charming usage of Set in the java
阅读量:6047 次
发布时间:2019-06-20

本文共 1876 字,大约阅读时间需要 6 分钟。

In an attempt to remove duplicate elements from list, I go to the lengths to take advantage of  methods in the java api. After investiagting the document of java api, the result is so satisfying that I speak hightly of wisdom of developer of java language.Next I will introduce charming usage about set in the java. 

[java] 
  1. import java.util.ArrayList;  
  2. import java.util.Arrays;  
  3. import java.util.Collections;  
  4. import java.util.HashSet;  
  5. import java.util.List;  
  6. import java.util.Set;  
  7. import java.util.TreeSet;  
  8.   
  9. public class SetUtil  
  10. {  
  11.   
  12.     public static List<String> testStrList = Arrays.asList("Apple""Orange",  
  13.             "Pair""Grape""Banana""Apple""Orange");  
  14.   
  15.     /** 
  16.      * Gets sorted sets which contains no duplicate elements 
  17.      *  
  18.      * @time Jul 17, 2014 7:58:16 PM 
  19.      * @return void 
  20.      */  
  21.     public static void sort()  
  22.     {  
  23.         Set<String> sortSet = new TreeSet<String>(testStrList);  
  24.         System.out.println(sortSet);  
  25.       // output : [Apple, Banana, Grape, Orange, Pair]  
  26.     }  
  27.   
  28.     public static void removeDuplicate()  
  29.     {  
  30.         Set<String> uniqueSet = new HashSet<String>(testStrList);  
  31.         System.out.println(uniqueSet);  
  32.        <span style="font-family: Arial, Helvetica, sans-serif;">// output : </span><span style="font-family: Arial, Helvetica, sans-serif;">[Pair, Apple, Banana, Orange, Grape]</span>  
  33.     }  
  34.   
  35.     public static void reverse()  
  36.     {  
  37.         Set<String> sortSet = new TreeSet<String>(testStrList);  
  38.         List<String> sortList = new ArrayList<String>(sortSet);  
  39.         Collections.reverse(sortList);  
  40.         System.out.println(sortList);  
  41.         // output : [Pair, Orange, Grape, Banana, Apple]  
  42.     }  
  43.   
  44.     public static void swap()  
  45.     {  
  46.         Set<String> sortSet = new TreeSet<String>(testStrList);  
  47.         List<String> sortList = new ArrayList<String>(sortSet);  
  48.         Collections.swap(sortList, 0, sortList.size() - 1);  
  49.         System.out.println(sortList);  
  50.         output : [Apple, Orange, Grape, Banana, Pair]  
  51.     }  
  52.   
  53.     public static void main(String[] args)  
  54.     {  
  55.         SetUtil.sort();  
  56.         SetUtil.reverse();  
  57.         SetUtil.swap();  
  58.         SetUtil.removeDuplicate();  
  59.     }  
  60. }  

转载地址:http://kfxex.baihongyu.com/

你可能感兴趣的文章
C++中变量的持续性、链接性和作用域详解
查看>>
2017 4月5日上午
查看>>
第一阶段冲刺报告(一)
查看>>
使用crontab调度任务
查看>>
【转载】SQL经验小记
查看>>
zookeeper集群搭建 docker+zk集群搭建
查看>>
Vue2.5笔记:Vue的实例与生命周期
查看>>
论JVM爆炸的几种姿势及自救方法
查看>>
使用throw让服务器端与客户端进行数据交互[Java]
查看>>
java反射与代理
查看>>
深度分析Java的ClassLoader机制(源码级别)
查看>>
微服务架构选Java还是选Go - 多用户负载测试
查看>>
我的友情链接
查看>>
69、iSCSI共享存储配置实战
查看>>
乔布斯走了。你还期待苹果吗?
查看>>
优先级
查看>>
Tomcat与Web服务器、应用服务器的关系
查看>>
用DFS实现全排列 & 八皇后问题
查看>>
深度学习博客
查看>>
Android总结篇系列:Android Service
查看>>