算法之去掉vetor集合中的重复元素

Posted java_pro

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了算法之去掉vetor集合中的重复元素相关的知识,希望对你有一定的参考价值。

public class DropRepetition {
    public static void main(String[] args) {
        Vector<String> v = new Vector<String>();
        v.add("1");
        v.add("1");
        v.add("2");
        v.add("2");
        v.add("3");
        v.add("3");
        dropRepetition1(v);
        dropRepetition2(v);
    }

    private static Vector<String> dropRepetition1(Vector<String> v) {
        //创建新的Vector对象
        Vector<String> newV = new Vector<String>();
        for (String str : newV) {
            if(!newV.contains(str))
                newV.add(str);
        }
        return newV;
    }
    private static HashSet<String> dropRepetition2(Vector<String> v) {
        //构造新的HashSet
        HashSet<String> set = new HashSet<String>(v);
        return set;
    }
}

 

以上是关于算法之去掉vetor集合中的重复元素的主要内容,如果未能解决你的问题,请参考以下文章

Python基础(3) - 去掉列表或元组中的重复元素

用python 一行代码去掉数组中重复元素

JAVA中,如何去掉LIST里的重复元素

第六节 Go数据结构之集合

Ex 2_14 去掉数组中所有重复的元素..._第二次作业

怎么去掉字符串中重复出现的字符