赞
踩
- public static <E> List<E> getDuplicateElements(List<E> list) {
- return list.stream() // list 对应的 Stream
- .collect(Collectors.toMap(e -> e, e -> 1, (a, b) -> a + b)) // 获得元素出现频率的 Map,键为元素,值为元素出现的次数
- .entrySet().stream() // 所有 entry 对应的 Stream
- .filter(entry -> entry.getValue() > 1) // 过滤出元素出现次数大于 1 的 entry
- .map(entry -> entry.getKey()) // 获得 entry 的键(重复元素)对应的 Stream
- .collect(Collectors.toList()); // 转化为 List
- }
- public static void main(String[] args) throws Exception {
- List<String> list = Arrays.asList("a", "b", "c", "d", "a", "a", "d", "d","c","b","e","f");
- List<String> duplicateElements = getDuplicateElements(list);
-
- System.out.println("list 中重复的元素:" + duplicateElements);
- }
运行结果
list 中重复的元素:[a, b, c, d]
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。