美文网首页
12.2 【HashMap】js 利用线性探查解决散列冲突问题

12.2 【HashMap】js 利用线性探查解决散列冲突问题

作者: 狩秋之人 | 来源:发表于2019-11-18 22:30 被阅读0次

再次展示了js动态数组的方便性

'use strict';

// 内部类,定义链表节点内容
class valuePire {
    constructor (key, value) {
        this.key = key;
        this.value = value
    
        this.toString = function () {
            return '[ k:' + this.key + 'value: ' + this.value + ']'
        }
    } 
}
class HashMap {
    constructor () {
        this.table = []
    }
    // 散列函数
    loseloseHashCode (key) {
        let hash = 0;
        for(let i = 0; i < key.length; i++) {
            hash += key[i].charCodeAt()
        }
        return hash % 37
    }


    // 存放
    put (key, value) {
        let position = this.loseloseHashCode(key)

        if (this.table[position] === undefined) {
            this.table[position] = new valuePire(key, value)
        } else {
            let index = ++ position
            while (this.table[index] !== undefined) {
                index ++
            }
            this.table[position] = new valuePire(key, value)
        }
    }

    remove (key) {
        let position = this.loseloseHashCode(key)
        // console.log(this.table[position].key);
        if (this.table[position] !== undefined) {
            if (this.table[position].key === key) {
                this.table[index] = undefined
            } else {
                let index = ++ position
                while (this.table[index] === undefined
                    || this.table[index].key !== key) {
                    index ++
                }
                if (this.table[index].key === key) {
                    this.table[index] = undefined
                }
            }
        }
        return undefined
    }

    get (key) {
        let position = this.loseloseHashCode(key)
        // console.log(this.table[position].key);
        if (this.table[position] !== undefined) {
            if (this.table[position].key === key) {
                return this.table[position].value
            } else {
                let index = ++ position
                while (this.table[index] === undefined
                    || this.table[index].key !== key) {
                    index ++
                }
                if (this.table[index].key === key) {
                    return this.table[index].value
                }
            }
        }
        return undefined
    }
}

let hashmap = new HashMap();
hashmap.put('Gandalf', 'gandalf@email.com')

hashmap.put('Tyrion', 'tyrion@email.com')
hashmap.put('Aaron', 'Aaron@email.com')

hashmap.put('Donnie', 'Donnie@email.com')
hashmap.put('Ana', 'Ana@email.com')

hashmap.put('Jonathan', 'Jonathan@email.com')
hashmap.put('Jamie', 'Jamie@email.com')
hashmap.put('Sue', 'Sue@email.com')
// hashmap.remove('Jamie')
let temp = hashmap.get('Jamie')
console.log(temp);

相关文章

  • 12.2 【HashMap】js 利用线性探查解决散列冲突问题

    再次展示了js动态数组的方便性

  • 12 【HashMap】js 利用分离链接(拉链法)解决散列冲突

    昨天有考试...结果回寝室就已经半夜了,根本来不及学习很多东西,看了眼散列冲突的拉链法和线性探查法,敲了一点代码报...

  • 解决哈希冲突的方式

    针对哈希冲突,常用的思路有两种: 1,闭散列。 2,开散列。 思考:HashMap处理哈希冲突采用的是哪种方式? ...

  • python数据结构教程 Day10

    本节重点: 散列 散列函数 完美散列函数 hashlib 散列函数设计 冲突解决方案 一、散列 能够使得查找的次数...

  • hashmap、hashtable

    Hashmap:数组+链表通过hash函数计算下标值 哈希冲突解决办法:开放寻址法,再散列函数法,链地址法 Has...

  • JDK1.8的HashMap源码分析

    JDK1.8之前的HashMap 在JDK1.8之前,HashMap通过散列表(哈希表)实现,并且散列表冲突解决方...

  • Hash算法

    解决冲突是一个复杂问题。冲突主要取决于: (1)散列函数,一个好的散列函数的值应尽可能平均分布。(2)处理冲突方法...

  • 4 查找

    静态查找 顺序查找法 折半查找法 散列 散列的概念 散列函数 冲突解决方法 散列算法设计与分析

  • 散列

    哈希码是一个散列值,通过单向函数求得,范围是int,数量有限,所以会发生散列值冲突。HashMap、Hashtab...

  • 数据结构笔记(散列查找->散列表)

    为了解决动态查找的问题散列查找法的两项基本工作: 计算位置:构造散列函数确定关键词存储位置 解决冲突:应用某种策略...

网友评论

      本文标题:12.2 【HashMap】js 利用线性探查解决散列冲突问题

      本文链接:https://www.haomeiwen.com/subject/vodiictx.html