Update codes/typescript/chapter_hashing/array_hash_map.ts

Co-authored-by: Justin Tse <xiefahit@gmail.com>
pull/136/head
Yudong Jin 2 years ago committed by GitHub
parent 528b716766
commit f628fe27d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -41,7 +41,7 @@ class ArrayHashMap {
/* 添加操作 */ /* 添加操作 */
public set(key: number, val: string) { public set(key: number, val: string) {
let index = this.hashFunc(key); let index = this.hashFunc(key);
this.bucket[index] = new Entry(index, val); this.bucket[index] = new Entry(key, val);
} }
/* 删除操作 */ /* 删除操作 */

Loading…
Cancel
Save