91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么用Java哈希桶方式解決哈希沖突

發布時間:2022-02-14 09:54:00 來源:億速云 閱讀:157 作者:iii 欄目:開發技術

這篇文章主要介紹了怎么用Java哈希桶方式解決哈希沖突的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇怎么用Java哈希桶方式解決哈希沖突文章都會有所收獲,下面我們一起來看看吧。

一. 實現形式一(鍵值對只能為整數)

我們可以先實現一個比較簡單的哈希表,使用java中解決哈希沖突的方法,即哈希桶(開散列)方式實現,其中注意:

  • 可以使用內部類方式定義節點

  • 負載因子默認為0.75

  • 因為我們使用的是哈希桶方式解決哈希沖突,所以在我們擴容成功之后,原來桶中的數據得重新哈希計算出新的位置,不然就和原來桶中的數據的位置不一樣了

相關代碼如下

public class HashBucket {

    static class Node {//使用內部類方式定義節點
        public int key;
        public int val;
        public Node next;

        public Node(int key, int val) {
            this.key = key;
            this.val = val;
        }
    }

    private Node[] array;
    public int usedSize;

    public HashBucket() {
        this.array = new Node[10];
        this.usedSize = 0;
    }


    public void put(int key,int val) {//存放數據
        //1、確定下標
        int index = key % this.array.length;
        //2、遍歷這個下標的鏈表
        Node cur = array[index];
        while (cur != null) {
            //更新val
            if(cur.key == key) {
                cur.val = val;
                return;
            }
            cur = cur.next;
        }
        //3、cur == null   當前數組下標的鏈表中沒有key
        Node node = new Node(key,val);
        node.next = array[index];
        array[index] = node;
        this.usedSize++;
        //4、判斷當前有沒有超過負載因子
        if(loadFactor() >= 0.75) {//負載因子我們認為0.75
            //擴容
            resize();
        }
    }

    public int get(int key) {//取出數據
        //以什么方式存儲的  那就以什么方式取
        int index = key % this.array.length;

        Node cur = array[index];

        while (cur != null) {
            if(cur.key == key) {
                return cur.val;
            }
            cur = cur.next;
        }

        return -1;
    }


    public double loadFactor() {//計算負載因子
        return this.usedSize*1.0 / this.array.length;
    }

    public void resize() {//擴容函數
        //自己創建新的2倍數組
        Node[] newArray = new Node[2*this.array.length];
        //遍歷原來的哈希桶
        //最外層循環 控制數組下標
        for (int i = 0; i < this.array.length; i++) {
            Node cur = array[i];
            Node curNext = null;
            while (cur != null) {
                //記錄cur.next
                curNext = cur.next;
                //在新的數組里面的下標
                int index = cur.key % newArray.length;
                //進行頭插法
                cur.next = newArray[index];
                newArray[index] = cur;
                cur = curNext;
            }
        }
        this.array = newArray;
    }

二. 實現方式二(改進版)

上面我們實現的哈希表中的鍵值對只能存放整型數據,但若是比較復雜的類型,例如字符串,對象等等,此時就需要用到泛型了。其中注意:

  • 同樣可以使用內部類方式定義節點類型

  • 使用泛型

  • 將泛型轉換成整數時要用到hashCode方法

  • 利用對象哈希值確定下標,為了防止哈希值太大,應該讓其%數組的長度

  • 遍歷數組下標時,利用equals方法比較key是否相同

  • 存放自定義的數據類型時,一定要重寫hashcode和equals方法

相關代碼如下

class Person {
    public String id;

    public Person(String id) {
        this.id = id;
    }

    @Override
    public String toString() {
        return "Person{" +
                "id='" + id + '\'' +
                '}';
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        Person person = (Person) o;
        return Objects.equals(id, person.id);
    }

    @Override
    public int hashCode() {
        return Objects.hash(id);
    }
}
public class HashBuck2<K,V> {
    static class Node<K,V> {
        public K key;
        public V val;
        public Node<K,V> next;

        public Node(K key,V val) {
            this.key = key;
            this.val = val;
        }
    }


    public Node<K,V>[] array = (Node<K, V>[]) new Node[10];
    public int usedSize;

    public void put(K key,V val) {
        //通過hashcode方法定位數組的下標
        int hash = key.hashCode();
        int index = hash % this.array.length;
        Node<K,V> cur = array[index];
        while (cur != null) {
            //equals 起的作用是遍歷當前數組下標的key是否相同
            if(cur.key.equals(key)) {
                cur.val = val;
            }
            cur = cur.next;
        }

        Node<K,V> node = new Node<>(key,val);
        node.next = array[index];
        array[index] = node;
        this.usedSize++;
    }

    public V get(K key) {
        int hash = key.hashCode();
        int index = hash % this.array.length;
        Node<K,V> cur= array[index];
        while (cur != null) {
            if(cur.key.equals(key)) {
                return cur.val;
            }
            cur = cur.next;
        }
        return null;
    }

關于“怎么用Java哈希桶方式解決哈希沖突”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“怎么用Java哈希桶方式解決哈希沖突”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

类乌齐县| 鹿邑县| 开化县| 宜宾县| 曲麻莱县| 都安| 乐都县| 卫辉市| 句容市| 碌曲县| 长寿区| 射阳县| 屏东市| 乐陵市| 永德县| 古交市| 宜昌市| 镇安县| 正蓝旗| 滁州市| 岚皋县| 通渭县| 孝昌县| 龙海市| 合江县| 岐山县| 柳州市| 探索| 司法| 和田县| 仲巴县| 古蔺县| 阿坝县| 岳阳县| 东乌珠穆沁旗| 湖北省| 兰西县| 神木县| 沁阳市| 巨鹿县| 安仁县|