最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

java中刪除數(shù)組中重復(fù)元素方法探討

 更新時(shí)間:2013年10月02日 00:16:18   作者:  
這個(gè)是一個(gè)老問(wèn)題,但是發(fā)現(xiàn)大多數(shù)人說(shuō)的還不夠透。小弟就在這里拋磚引玉了,歡迎拍磚

問(wèn)題:比如我有一個(gè)數(shù)組(元素個(gè)數(shù)為0哈),希望添加進(jìn)去元素不能重復(fù)。

  拿到這樣一個(gè)問(wèn)題,我可能會(huì)快速的寫(xiě)下代碼,這里數(shù)組用ArrayList.

復(fù)制代碼 代碼如下:

private static void testListSet(){
        List<String> arrays = new ArrayList<String>(){
            @Override
            public boolean add(String e) {
                for(String str:this){
                    if(str.equals(e)){
                        System.out.println("add failed !!!  duplicate element");
                        return false;
                    }else{
                        System.out.println("add successed !!!");
                    }
                }
                return super.add(e);
            }
        };

        arrays.add("a");arrays.add("b");arrays.add("c");arrays.add("b");
        for(String e:arrays)
            System.out.print(e);
    }

這里我什么都不關(guān),只關(guān)心在數(shù)組添加元素的時(shí)候做下判斷(當(dāng)然添加數(shù)組元素只用add方法),是否已存在相同元素,如果數(shù)組中不存在這個(gè)元素,就添加到這個(gè)數(shù)組中,反之亦然。這樣寫(xiě)可能簡(jiǎn)單,但是面臨龐大數(shù)組時(shí)就顯得笨拙:有100000元素的數(shù)組天家一個(gè)元素,難道要調(diào)用100000次equal嗎?這里是個(gè)基礎(chǔ)。

      問(wèn)題:加入已經(jīng)有一些元素的數(shù)組了,怎么刪除這個(gè)數(shù)組里重復(fù)的元素呢?

  大家知道java中集合總的可以分為兩大類(lèi):List與Set。List類(lèi)的集合里元素要求有序但可以重復(fù),而Set類(lèi)的集合里元素要求無(wú)序但不能重復(fù)。那么這里就可以考慮利用Set這個(gè)特性把重復(fù)元素刪除不就達(dá)到目的了,畢竟用系統(tǒng)里已有的算法要優(yōu)于自己現(xiàn)寫(xiě)的算法吧。

復(fù)制代碼 代碼如下:

public static void removeDuplicate(List<People> list){
       HashSet<People> set = new HashSet<People>(list);
       list.clear();
       list.addAll(set);
    }  private static People[] ObjData = new People[]{
        new People(0, "a"),new People(1, "b"),new People(0, "a"),new People(2, "a"),new People(3, "c"),
    }; 

復(fù)制代碼 代碼如下:

public class People{
    private int id;
    private String name;

    public People(int id,String name){
        this.id = id;
        this.name = name;
    }

    @Override
    public String toString() {
        return ("id = "+id+" , name "+name);
    }   
}

上面的代碼,用了一個(gè)自定義的People類(lèi),當(dāng)我添加相同的對(duì)象時(shí)候(指的是含有相同的數(shù)據(jù)內(nèi)容),調(diào)用removeDuplicate方法發(fā)現(xiàn)這樣并不能解決實(shí)際問(wèn)題,仍然存在相同的對(duì)象。那么HashSet里是怎么判斷像個(gè)對(duì)象是否相同的呢?打開(kāi)HashSet源碼可以發(fā)現(xiàn):每次往里面添加數(shù)據(jù)的時(shí)候,就必須要調(diào)用add方法:

復(fù)制代碼 代碼如下:

@Override
     public boolean add(E object) {
         return backingMap.put(object, this) == null;
     }

這里的backingMap也就是HashSet維護(hù)的數(shù)據(jù),它用了一個(gè)很巧妙的方法,把每次添加的Object當(dāng)作HashMap里面的KEY,本身HashSet對(duì)象當(dāng)作VALUE。這樣就利用了Hashmap里的KEY唯一性,自然而然的HashSet的數(shù)據(jù)不會(huì)重復(fù)。但是真正的是否有重復(fù)數(shù)據(jù),就得看HashMap里的怎么判斷兩個(gè)KEY是否相同。

復(fù)制代碼 代碼如下:

@Override public V put(K key, V value) {
        if (key == null) {
            return putValueForNullKey(value);
        }

        int hash = secondaryHash(key.hashCode());
        HashMapEntry<K, V>[] tab = table;
        int index = hash & (tab.length - 1);
        for (HashMapEntry<K, V> e = tab[index]; e != null; e = e.next) {
            if (e.hash == hash && key.equals(e.key)) {
                preModify(e);
                V oldValue = e.value;
                e.value = value;
                return oldValue;
            }
        }

        // No entry for (non-null) key is present; create one
        modCount++;
        if (size++ > threshold) {
            tab = doubleCapacity();
            index = hash & (tab.length - 1);
        }
        addNewEntry(key, value, hash, index);
        return null;
    }

總的來(lái)說(shuō),這里實(shí)現(xiàn)的思路是:遍歷hashmap里的元素,如果元素的hashcode相等(事實(shí)上還要對(duì)hashcode做一次處理),然后去判斷KEY的eqaul方法。如果這兩個(gè)條件滿足,那么就是不同元素。那這里如果數(shù)組里的元素類(lèi)型是自定義的話,要利用Set的機(jī)制,那就得自己實(shí)現(xiàn)equal與hashmap(這里hashmap算法就不詳細(xì)介紹了,我也就理解一點(diǎn))方法了:

復(fù)制代碼 代碼如下:

public class People{
    private int id; //
    private String name;

    public People(int id,String name){
        this.id = id;
        this.name = name;
    }

    @Override
    public String toString() {
        return ("id = "+id+" , name "+name);
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    @Override
    public boolean equals(Object obj) {
        if(!(obj instanceof People))
            return false;
        People o = (People)obj;
        if(id == o.getId()&&name.equals(o.getName()))
            return true;
        else
            return false;
    }

    @Override
    public int hashCode() {
        // TODO Auto-generated method stub
        return id;
        //return super.hashCode();
    }
}

這里在調(diào)用removeDuplicate(list)方法就不會(huì)出現(xiàn)兩個(gè)相同的people了。

      好吧,這里就測(cè)試它們的性能吧:

復(fù)制代碼 代碼如下:

public class RemoveDeplicate {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        //testListSet();
        //removeDuplicateWithOrder(Arrays.asList(data));
        //ArrayList<People> list = new ArrayList<People>(Arrays.asList(ObjData));

        //removeDuplicate(list);

        People[] data = createObjectArray(10000);
        ArrayList<People> list = new ArrayList<People>(Arrays.asList(data));

        long startTime1 = System.currentTimeMillis();
        System.out.println("set start time --> "+startTime1);
        removeDuplicate(list);
        long endTime1 = System.currentTimeMillis();
        System.out.println("set end time -->  "+endTime1);
        System.out.println("set total time -->  "+(endTime1-startTime1));
        System.out.println("count : " + People.count);
        People.count = 0;

        long startTime = System.currentTimeMillis();
        System.out.println("Efficient start time --> "+startTime);
        EfficientRemoveDup(data);
        long endTime = System.currentTimeMillis();
        System.out.println("Efficient end time -->  "+endTime);
        System.out.println("Efficient total time -->  "+(endTime-startTime));
        System.out.println("count : " + People.count);
       

       

    }
    public static void removeDuplicate(List<People> list)
    {
     HashSet<People> set = new HashSet<People>(list);
     list.clear();
     list.addAll(set);
    }

    public static void removeDuplicateWithOrder(List<String> arlList)
    {
       Set<String> set = new HashSet<String>();
       List<String> newList = new ArrayList<String>();
       for (Iterator<String> iter = arlList.iterator(); iter.hasNext();) {
          String element = iter.next();
          if (set.add( element))
             newList.add( element);
       }
       arlList.clear();
       arlList.addAll(newList);
    }

   
    @SuppressWarnings("serial")
    private static void testListSet(){
        List<String> arrays = new ArrayList<String>(){
            @Override
            public boolean add(String e) {
                for(String str:this){
                    if(str.equals(e)){
                        System.out.println("add failed !!!  duplicate element");
                        return false;
                    }else{
                        System.out.println("add successed !!!");
                    }
                }
                return super.add(e);
            }
        };

        arrays.add("a");arrays.add("b");arrays.add("c");arrays.add("b");
        for(String e:arrays)
            System.out.print(e);
    }

    private static void EfficientRemoveDup(People[] peoples){
        //Object[] originalArray; // again, pretend this contains our original data
        int count =0;
        // new temporary array to hold non-duplicate data
        People[] newArray = new People[peoples.length];
        // current index in the new array (also the number of non-dup elements)
        int currentIndex = 0;

        // loop through the original array...
        for (int i = 0; i < peoples.length; ++i) {
            // contains => true iff newArray contains originalArray[i]
            boolean contains = false;

            // search through newArray to see if it contains an element equal
            // to the element in originalArray[i]
            for(int j = 0; j <= currentIndex; ++j) {
                // if the same element is found, don't add it to the new array
                count++;
                if(peoples[i].equals(newArray[j])) {

                    contains = true;
                    break;
                }
            }

            // if we didn't find a duplicate, add the new element to the new array
            if(!contains) {
                // note: you may want to use a copy constructor, or a .clone()
                // here if the situation warrants more than a shallow copy
                newArray[currentIndex] = peoples[i];
                ++currentIndex;
            }
        }

        System.out.println("efficient medthod inner  count : "+ count);

    }

    private static People[] createObjectArray(int length){
        int num = length;
        People[] data = new People[num];
        Random random = new Random();
        for(int i = 0;i<num;i++){
            int id = random.nextInt(10000);
            System.out.print(id + " ");
            data[i]=new People(id, "i am a man");
        }
        return data;
    }

測(cè)試結(jié)果:

復(fù)制代碼 代碼如下:

set end time -->  1326443326724
set total time -->  26
count : 3653
Efficient start time --> 1326443326729
efficient medthod inner  count : 28463252
Efficient end time -->  1326443327107
Efficient total time -->  378
count : 28463252

相關(guān)文章

  • java冒泡排序算法代碼

    java冒泡排序算法代碼

    這篇文章介紹了java冒泡排序算法代碼,有需要的朋友可以參考一下
    2013-10-10
  • Spring Boot實(shí)現(xiàn)數(shù)據(jù)訪問(wèn)計(jì)數(shù)器方案詳解

    Spring Boot實(shí)現(xiàn)數(shù)據(jù)訪問(wèn)計(jì)數(shù)器方案詳解

    在Spring Boot項(xiàng)目中,有時(shí)需要數(shù)據(jù)訪問(wèn)計(jì)數(shù)器,怎么實(shí)現(xiàn)數(shù)據(jù)訪問(wèn)計(jì)數(shù)器呢?下面小編給大家?guī)?lái)了Spring Boot數(shù)據(jù)訪問(wèn)計(jì)數(shù)器的實(shí)現(xiàn)方案,需要的朋友參考下吧
    2021-08-08
  • Java泛型枚舉Annotation接口詳細(xì)解讀與Eclipse發(fā)展

    Java泛型枚舉Annotation接口詳細(xì)解讀與Eclipse發(fā)展

    這篇文章主要給大家介紹了關(guān)于Java中方法使用的相關(guān)資料,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2021-08-08
  • Java 實(shí)現(xiàn)協(xié)程的方法

    Java 實(shí)現(xiàn)協(xié)程的方法

    這篇文章主要介紹了Java 實(shí)現(xiàn)協(xié)程的方法,幫助大家更好的理解和學(xué)習(xí)Java,感興趣的朋友可以了解下
    2020-10-10
  • java 單播、廣播、組播詳解及實(shí)例代碼

    java 單播、廣播、組播詳解及實(shí)例代碼

    這篇文章主要介紹了java 單播、廣播、組播詳解及實(shí)例代碼的相關(guān)資料,需要的朋友可以參考下
    2017-02-02
  • SpringBoot2.x配置多數(shù)據(jù)源方式

    SpringBoot2.x配置多數(shù)據(jù)源方式

    這篇文章主要介紹了SpringBoot2.x配置多數(shù)據(jù)源方式,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教
    2024-03-03
  • 一篇文章帶你了解Java泛型的super和extends

    一篇文章帶你了解Java泛型的super和extends

    這篇文章主要介紹了Java泛型extends及super區(qū)別實(shí)例解析,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下
    2021-08-08
  • Java使用Tesseract-Ocr識(shí)別數(shù)字

    Java使用Tesseract-Ocr識(shí)別數(shù)字

    這篇文章主要介紹了Java使用Tesseract-Ocr識(shí)別數(shù)字的方法,幫助大家更好的理解和學(xué)習(xí)使用Java,感興趣的朋友可以了解下
    2021-04-04
  • java設(shè)計(jì)模式之觀察者模式簡(jiǎn)單解讀

    java設(shè)計(jì)模式之觀察者模式簡(jiǎn)單解讀

    這篇文章主要介紹了java設(shè)計(jì)模式之觀察者模式簡(jiǎn)單解讀,觀察者模式是在對(duì)象之間定義了一對(duì)多的依賴(lài),這樣一來(lái),當(dāng)一個(gè)對(duì)象改變狀態(tài),依賴(lài)它的對(duì)象會(huì)收到通知并自動(dòng)更新,需要的朋友可以參考下
    2023-10-10
  • JDBC增刪改查和查唯一的完整代碼解析

    JDBC增刪改查和查唯一的完整代碼解析

    這篇文章主要介紹了JDBC增刪改查和查唯一的完整代碼解析,代碼分為第四部分,每部分代碼都不錯(cuò),對(duì)jdbc增刪改查操作感興趣的朋友一起學(xué)習(xí)吧
    2016-12-12

最新評(píng)論

筠连县| 徐闻县| 苍南县| 吉林省| 新巴尔虎左旗| 建瓯市| 九龙坡区| 临高县| 扶余县| 分宜县| 秀山| 千阳县| 汶川县| 苍南县| 县级市| 辽阳县| 华安县| 鸡西市| 绥化市| 仪征市| 双流县| 柘城县| 宜都市| 峡江县| 康定县| 星座| 普兰县| 昭苏县| 深圳市| 无棣县| 仙居县| 正定县| 遂平县| 新竹市| 渭源县| 廉江市| 常州市| 双峰县| 左云县| 疏勒县| 辽宁省|