mirror of
https://github.com/krahets/hello-algo.git
synced 2025-11-02 12:58:42 +08:00
Update codes/typescript/chapter_hashing/array_hash_map.ts
Co-authored-by: Justin Tse <xiefahit@gmail.com>
This commit is contained in:
@ -41,7 +41,7 @@ class ArrayHashMap {
|
||||
/* 添加操作 */
|
||||
public set(key: number, val: string) {
|
||||
let index = this.hashFunc(key);
|
||||
this.bucket[index] = new Entry(index, val);
|
||||
this.bucket[index] = new Entry(key, val);
|
||||
}
|
||||
|
||||
/* 删除操作 */
|
||||
|
||||
Reference in New Issue
Block a user