作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
此代码只是一个测试,用于查找 vector 的重复项并将其删除,同时删除其他 2 个 vector 的对应对象
这在第 3 行给出了 Arrayoutofindex 作为输出。您有什么建议吗?
for (int k = 0 ; k < vA.size() ; k++)
{
Object a = vA.elementAt(0);
Object b = vA.elementAt(k);
if(a == b && k!=0)
{
int duplicate = vA.indexOf(b);
vA.removeElementAt(duplicate);
vB.removeElementAt(duplicate);
vC.removeElementAt(duplicate);
}
最佳答案
根据This问题,我建议您阅读,因为它解释了从数组中删除重复项的方法,
您可以使用以下方法:删除重复方法:
/** List order not maintained **/
public static void removeDuplicate(ArrayList arlList)
{
HashSet h = new HashSet(arlList);
arlList.clear();
arlList.addAll(h);
}
以及removeDuplicateWithOrder方法:
/** List order maintained **/
public static void removeDuplicateWithOrder(ArrayList arlList)
{
Set set = new HashSet();
List newList = new ArrayList();
for (Iterator iter = arlList.iterator(); iter.hasNext();) {
Object element = iter.next();
if (set.add(element))
newList.add(element);
}
arlList.clear();
arlList.addAll(newList);
}
希望这些对您有所帮助。
关于java - 查找 vector 的重复项并删除,保留平行 vector 的顺序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10675064/
我是一名优秀的程序员,十分优秀!