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 哈希沖突內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: