You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
97 lines
1.7 KiB
97 lines
1.7 KiB
// File: array_hash_map.go
|
|
// Created Time: 2022-12-14
|
|
// Author: msk397 (machangxinq@gmail.com)
|
|
|
|
package chapter_hashing
|
|
|
|
import "fmt"
|
|
|
|
/* 键值对 int->String */
|
|
type entry struct {
|
|
key int
|
|
val string
|
|
}
|
|
|
|
/* 基于数组简易实现的哈希表 */
|
|
type arrayHashMap struct {
|
|
bucket []*entry
|
|
}
|
|
|
|
func newArrayHashMap() *arrayHashMap {
|
|
// 初始化一个长度为 100 的桶(数组)
|
|
bucket := make([]*entry, 100)
|
|
return &arrayHashMap{bucket: bucket}
|
|
}
|
|
|
|
/* 哈希函数 */
|
|
func (a *arrayHashMap) hashFunc(key int) int {
|
|
index := key % 100
|
|
return index
|
|
}
|
|
|
|
/* 查询操作 */
|
|
func (a *arrayHashMap) get(key int) string {
|
|
index := a.hashFunc(key)
|
|
pair := a.bucket[index]
|
|
if pair == nil {
|
|
return "Not Found"
|
|
}
|
|
return pair.val
|
|
}
|
|
|
|
/* 添加操作 */
|
|
func (a *arrayHashMap) put(key int, val string) {
|
|
pair := &entry{key: key, val: val}
|
|
index := a.hashFunc(key)
|
|
a.bucket[index] = pair
|
|
}
|
|
|
|
/* 删除操作 */
|
|
func (a *arrayHashMap) remove(key int) {
|
|
index := a.hashFunc(key)
|
|
// 置为 nil ,代表删除
|
|
a.bucket[index] = nil
|
|
}
|
|
|
|
/* 获取所有键对 */
|
|
func (a *arrayHashMap) entrySet() []*entry {
|
|
var pairs []*entry
|
|
for _, pair := range a.bucket {
|
|
if pair != nil {
|
|
pairs = append(pairs, pair)
|
|
}
|
|
}
|
|
return pairs
|
|
}
|
|
|
|
/* 获取所有键 */
|
|
func (a *arrayHashMap) keySet() []int {
|
|
var keys []int
|
|
for _, pair := range a.bucket {
|
|
if pair != nil {
|
|
keys = append(keys, pair.key)
|
|
}
|
|
}
|
|
return keys
|
|
}
|
|
|
|
/* 获取所有值 */
|
|
func (a *arrayHashMap) valueSet() []string {
|
|
var values []string
|
|
for _, pair := range a.bucket {
|
|
if pair != nil {
|
|
values = append(values, pair.val)
|
|
}
|
|
}
|
|
return values
|
|
}
|
|
|
|
/* 打印哈希表 */
|
|
func (a *arrayHashMap) print() {
|
|
for _, pair := range a.bucket {
|
|
if pair != nil {
|
|
fmt.Println(pair.key, "->", pair.val)
|
|
}
|
|
}
|
|
}
|