mirror of
https://github.com/krahets/hello-algo.git
synced 2026-08-10 19:10:57 +00:00
feat(go): support new features with go code (#565)
* feat(go): support hash map chaining * feat(go): support hash map open address * feat(go): support simple hash * feat(go): support top k heap * feat(go): support subset sum I * feat(go): support subset sum native * feat(go): support subset sum II * fix(go): fix some problem
This commit is contained in:
@@ -6,6 +6,7 @@ package chapter_hashing
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"strconv"
|
||||
"testing"
|
||||
|
||||
. "github.com/krahets/hello-algo/pkg"
|
||||
@@ -13,43 +14,113 @@ import (
|
||||
|
||||
func TestHashmap(t *testing.T) {
|
||||
/* 初始化哈希表 */
|
||||
mapp := make(map[int]string)
|
||||
hmap := make(map[int]string)
|
||||
|
||||
/* 添加操作 */
|
||||
// 在哈希表中添加键值对 (key, value)
|
||||
mapp[12836] = "小哈"
|
||||
mapp[15937] = "小啰"
|
||||
mapp[16750] = "小算"
|
||||
mapp[13276] = "小法"
|
||||
mapp[10583] = "小鸭"
|
||||
hmap[12836] = "小哈"
|
||||
hmap[15937] = "小啰"
|
||||
hmap[16750] = "小算"
|
||||
hmap[13276] = "小法"
|
||||
hmap[10583] = "小鸭"
|
||||
fmt.Println("\n添加完成后,哈希表为\nKey -> Value")
|
||||
PrintMap(mapp)
|
||||
PrintMap(hmap)
|
||||
|
||||
/* 查询操作 */
|
||||
// 向哈希表输入键 key ,得到值 value
|
||||
name := mapp[15937]
|
||||
name := hmap[15937]
|
||||
fmt.Println("\n输入学号 15937 ,查询到姓名 ", name)
|
||||
|
||||
/* 删除操作 */
|
||||
// 在哈希表中删除键值对 (key, value)
|
||||
delete(mapp, 10583)
|
||||
delete(hmap, 10583)
|
||||
fmt.Println("\n删除 10583 后,哈希表为\nKey -> Value")
|
||||
PrintMap(mapp)
|
||||
PrintMap(hmap)
|
||||
|
||||
/* 遍历哈希表 */
|
||||
// 遍历键值对 key->value
|
||||
fmt.Println("\n遍历键值对 Key->Value")
|
||||
for key, value := range mapp {
|
||||
for key, value := range hmap {
|
||||
fmt.Println(key, "->", value)
|
||||
}
|
||||
// 单独遍历键 key
|
||||
fmt.Println("\n单独遍历键 Key")
|
||||
for key := range mapp {
|
||||
for key := range hmap {
|
||||
fmt.Println(key)
|
||||
}
|
||||
// 单独遍历值 value
|
||||
fmt.Println("\n单独遍历值 Value")
|
||||
for _, value := range mapp {
|
||||
for _, value := range hmap {
|
||||
fmt.Println(value)
|
||||
}
|
||||
}
|
||||
|
||||
func TestHashMapChaining(t *testing.T) {
|
||||
/* 初始化哈希表 */
|
||||
hmap := newHashMapChaining()
|
||||
|
||||
/* 添加操作 */
|
||||
// 在哈希表中添加键值对 (key, value)
|
||||
hmap.put(12836, "小哈")
|
||||
hmap.put(15937, "小啰")
|
||||
hmap.put(16750, "小算")
|
||||
hmap.put(13276, "小法")
|
||||
hmap.put(10583, "小鸭")
|
||||
fmt.Println("\n添加完成后,哈希表为\nKey -> Value")
|
||||
hmap.print()
|
||||
|
||||
/* 查询操作 */
|
||||
// 向哈希表输入键 key ,得到值 value
|
||||
name := hmap.get(15937)
|
||||
fmt.Println("\n输入学号 15937 ,查询到姓名 ", name)
|
||||
|
||||
/* 删除操作 */
|
||||
// 在哈希表中删除键值对 (key, value)
|
||||
hmap.remove(12836)
|
||||
fmt.Println("\n删除 12836 后,哈希表为\nKey -> Value")
|
||||
hmap.print()
|
||||
}
|
||||
|
||||
func TestHashMapOpenAddressing(t *testing.T) {
|
||||
/* 初始化哈希表 */
|
||||
hmap := newHashMapOpenAddressing()
|
||||
|
||||
/* 添加操作 */
|
||||
// 在哈希表中添加键值对 (key, value)
|
||||
hmap.put(12836, "小哈")
|
||||
hmap.put(15937, "小啰")
|
||||
hmap.put(16750, "小算")
|
||||
hmap.put(13276, "小法")
|
||||
hmap.put(10583, "小鸭")
|
||||
fmt.Println("\n添加完成后,哈希表为\nKey -> Value")
|
||||
hmap.print()
|
||||
|
||||
/* 查询操作 */
|
||||
// 向哈希表输入键 key ,得到值 value
|
||||
name := hmap.get(13276)
|
||||
fmt.Println("\n输入学号 13276 ,查询到姓名 ", name)
|
||||
|
||||
/* 删除操作 */
|
||||
// 在哈希表中删除键值对 (key, value)
|
||||
hmap.remove(16750)
|
||||
fmt.Println("\n删除 16750 后,哈希表为\nKey -> Value")
|
||||
hmap.print()
|
||||
}
|
||||
|
||||
func TestSimpleHash(t *testing.T) {
|
||||
var hash int
|
||||
|
||||
key := "Hello 算法"
|
||||
|
||||
hash = addHash(key)
|
||||
fmt.Println("加法哈希值为 " + strconv.Itoa(hash))
|
||||
|
||||
hash = mulHash(key)
|
||||
fmt.Println("乘法哈希值为 " + strconv.Itoa(hash))
|
||||
|
||||
hash = xorHash(key)
|
||||
fmt.Println("异或哈希值为 " + strconv.Itoa(hash))
|
||||
|
||||
hash = rotHash(key)
|
||||
fmt.Println("旋转哈希值为 " + strconv.Itoa(hash))
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user