栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

Java集合与数据结构-哈希表

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

Java集合与数据结构-哈希表


哈希桶解决哈希冲突:

import java.util.Arrays;
import java.util.Objects;

public class HashBucket {
    static class Node {
        public K key;
        public V val;
        public Node next;

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

    @Override
    public boolean equals(Object o) {
        if (this == o) return true;
        if (o == null || getClass() != o.getClass()) return false;
        HashBucket that = (HashBucket) o;
        return usedSize == that.usedSize &&
                Arrays.equals(array, that.array);
    }

    @Override
    public int hashCode() {
        int result = Objects.hash(usedSize);
        result = 31 * result + Arrays.hashCode(array);
        return result;
    }

    public Node[] array;
    public int usedSize;

    public HashBucket() {
        this.array = new Node[8];
    }

    public void put(K key, V val) {
        Node node = new Node(key,val);
        int hash = key.hashCode();
        int index = hash % array.length;
        Node cur = array[index];
        while (cur != null) {
            if (cur.key.equals(key)) {
                cur.val = val;
                return;
            }
            cur = cur.next;
        }
        node.next = array[index];
        array[index] = node;
        this.usedSize++;
        if (loadFactor() >= 0.75) {
            resize();
        }
    }
    //扩容
    public void resize() {
        Node[] newArray = new Node[array.length * 2];
        //遍历原来的数组,每个元素重新进行哈希
        for (int i = 0; i < array.length; i++) {
            Node cur = array[i];
            while (cur != null) {
                int hash = cur.hashCode();
                int index = hash % newArray.length;
                Node curNext = cur.next;
                cur.next = newArray[index];
                newArray[index] = cur;
                cur = curNext;
            }
        }
    }

    //求负载因子
    public double loadFactor() {
        return usedSize * 1.0 / array.length;
    }

    public V get(K key) {
        int hash = key.hashCode();
        int index = hash % array.length;
        Node cur = array[index];
        while (cur != null) {
            if (cur.key == key) {
                return cur.val;
            }
            cur = cur.next;
        }
        return null;//没找到
    }

    public static void main(String[] args) {
        HashBucket hashBucket = new HashBucket<>();
        hashBucket.put("zm",1);
        hashBucket.put("zm2",2);
        System.out.println(hashBucket.get("zm2"));
    }
}
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/424360.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号