当前位置:   article > 正文

java8使用stream查找重复元素_stream判断list重复的元素

stream判断list重复的元素

一、查重方法

  1. public static <E> List<E> getDuplicateElements(List<E> list) {
  2. return list.stream() // list 对应的 Stream
  3. .collect(Collectors.toMap(e -> e, e -> 1, (a, b) -> a + b)) // 获得元素出现频率的 Map,键为元素,值为元素出现的次数
  4. .entrySet().stream() // 所有 entry 对应的 Stream
  5. .filter(entry -> entry.getValue() > 1) // 过滤出元素出现次数大于 1 的 entry
  6. .map(entry -> entry.getKey()) // 获得 entry 的键(重复元素)对应的 Stream
  7. .collect(Collectors.toList()); // 转化为 List
  8. }

二、测试

  1. public static void main(String[] args) throws Exception {
  2. List<String> list = Arrays.asList("a", "b", "c", "d", "a", "a", "d", "d","c","b","e","f");
  3. List<String> duplicateElements = getDuplicateElements(list);
  4. System.out.println("list 中重复的元素:" + duplicateElements);
  5. }

 运行结果

list 中重复的元素:[a, b, c, d]

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/2023面试高手/article/detail/479478
推荐阅读
相关标签
  

闽ICP备14008679号