structure/hashmap/hashmap_test.go

91 lines
1.5 KiB
Go
Raw Normal View History

2019-04-16 19:22:07 +00:00
package hashmap
2019-04-18 01:39:44 +00:00
import (
"fmt"
"runtime"
"testing"
"474420502.top/eson/structure/compare"
)
2019-04-16 19:22:07 +00:00
func TestCount(t *testing.T) {
2019-04-18 01:39:44 +00:00
hm := New(HashInt, compare.Int)
2019-04-21 05:31:39 +00:00
for i := 0; i < 1000; i++ {
2019-04-18 01:39:44 +00:00
hm.Put(i, i)
}
}
func PrintMemUsage() {
var m runtime.MemStats
runtime.ReadMemStats(&m)
// For info on each, see: https://golang.org/pkg/runtime/#MemStats
fmt.Printf("Alloc = %v MiB", bToMb(m.Alloc))
fmt.Printf("\tTotalAlloc = %v MiB", bToMb(m.TotalAlloc))
fmt.Printf("\tSys = %v MiB", bToMb(m.Sys))
fmt.Printf("\tNumGC = %v\n", m.NumGC)
}
func bToMb(b uint64) uint64 {
return b / 1024 / 1024
}
2019-04-21 20:46:07 +00:00
func BenchmarkPut(b *testing.B) {
2019-04-18 01:39:44 +00:00
hm := New(HashInt, compare.Int)
2019-04-21 05:31:39 +00:00
b.N = 100000
2019-04-18 01:39:44 +00:00
for i := 0; i < b.N; i++ {
hm.Put(i, i)
}
2019-04-21 20:46:07 +00:00
//b.Log(len(hm.table), hm.size)
//PrintMemUsage()
2019-04-18 01:39:44 +00:00
}
2019-04-21 20:46:07 +00:00
func BenchmarkGet(b *testing.B) {
b.StopTimer()
hm := New(HashInt, compare.Int)
b.N = 100000
for i := 0; i < b.N; i++ {
hm.Put(i, i)
}
b.StartTimer()
for i := 0; i < b.N; i++ {
hm.Get(i)
}
//b.Log(len(hm.table), hm.size)
//PrintMemUsage()
}
func BenchmarkGoPut(b *testing.B) {
2019-04-18 01:39:44 +00:00
m := make(map[int]int)
2019-04-21 05:31:39 +00:00
b.N = 100000
2019-04-18 01:39:44 +00:00
for i := 0; i < b.N; i++ {
m[i] = i
}
2019-04-21 20:46:07 +00:00
//b.Log(len(m))
//PrintMemUsage()
}
func BenchmarkGoGet(b *testing.B) {
b.StopTimer()
m := make(map[int]int)
b.N = 100000
for i := 0; i < b.N; i++ {
m[i] = i
}
for i := 0; i < b.N; i++ {
if _, ok := m[i]; !ok {
}
}
b.StartTimer()
for i := 0; i < b.N; i++ {
if _, ok := m[i]; !ok {
}
}
//b.Log(len(m))
//PrintMemUsage()
2019-04-16 19:22:07 +00:00
}