文件名称:hashtable:JavaScript中的哈希表数据结构实现
文件大小:7KB
文件格式:ZIP
更新时间:2024-05-21 21:18:56
JavaScript
哈希表 JavaScript中的数据结构实现。 根据哈希函数返回的哈希码将条目(键,值)存储在存储桶中。 如果哈希码发生冲突,则条目将存储在存储桶中的数组中,并通过唯一的键值进行检索。 安装 npm install hashtablejs bower install hashtable 用法 const Hashtable = require ( 'hashtablejs' ) ; function Point ( x , y ) { this . x = x ; this . y = y ; } function hashCode ( point ) { return `Point: ${ point . x } , ${ point . y } ` ; } function equals ( pointA , pointB ) { return ( pointA .
【文件预览】:
hashtable-master
----.jshintrc(500B)
----.gitignore(1KB)
----.jscsrc(118B)
----hashtable.js(4KB)
----package.json(1KB)
----LICENSE.md(1KB)
----.travis.yml(88B)
----CHANGELOG.md(151B)
----README.md(2KB)
----.gitattributes(52B)
----bower.json(583B)
----test()
--------hashtable.js(1KB)
----.editorconfig(427B)