查找数组列表中的重复值

编程入门 行业动态 更新时间:2024-10-15 22:24:30
本文介绍了查找数组列表中的重复值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我有一个的ArrayList<汽车>

例如

class Car{ String carName; int carType; }

现在,我已经找到,如果列表中具有相同名称的任何汽车。什么是做到这一点的最好方法是什么?

Now, I have to find if the list has any cars having same name. What is the best way to do this?

推荐答案

创建一个比较器:

public CarComparator implements Comparator<Car> { public int compare(Car c1, Car c2) { return c1.carNamepareTo(c2.carName); } }

现在添加的ArrayList 到的SortedSet ,preferably TreeSet中;如果有重复添加到副本列表:

Now add all the cars of the ArrayList to a SortedSet, preferably TreeSet; if there are duplicates add to the list of duplicates:

List<Car> duplicates = new ArrayList<Car>(); Set<Car> carSet = new TreeSet<Car>(new CarComparator()); for(Car c : originalCarList) { if(!carSet.add(c)) { duplicates.add(c); } }

最后,在你的复制你将所有的重复。

更多推荐

查找数组列表中的重复值

本文发布于:2023-11-22 00:59:29,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1615352.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:数组   列表中

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!