structure/hashmap/hashmap_test.go

119 lines
1.8 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 (
2019-04-22 19:05:25 +00:00
"bytes"
"encoding/gob"
"io/ioutil"
"log"
2019-04-18 01:39:44 +00:00
"testing"
)
2019-04-16 19:22:07 +00:00
2019-04-22 19:05:25 +00:00
func loadTestData() []int {
log.SetFlags(log.Lshortfile)
data, err := ioutil.ReadFile("../l.log")
if err != nil {
log.Println(err)
}
var l []int
decoder := gob.NewDecoder(bytes.NewReader(data))
decoder.Decode(&l)
return l
}
2019-04-16 19:22:07 +00:00
func TestCount(t *testing.T) {
2019-05-07 10:28:45 +00:00
hm := New()
2019-05-07 05:59:29 +00:00
// for i := 0; i < 100000; i++ {
// hm.Put(i, i)
// }
2019-05-06 09:01:18 +00:00
for i := 0; i < 100000; i++ {
hm.Put(i, i)
}
2019-04-28 10:32:01 +00:00
// t.Error(hm.Get(4))
2019-04-18 01:39:44 +00:00
}
2019-05-07 10:28:45 +00:00
var executeCount = 5
2019-04-22 19:05:25 +00:00
var compareSize = 100000
2019-04-21 20:46:07 +00:00
func BenchmarkPut(b *testing.B) {
2019-04-28 10:32:01 +00:00
b.StopTimer()
2019-04-22 19:05:25 +00:00
2019-04-28 10:32:01 +00:00
l := loadTestData()
2019-05-07 10:28:45 +00:00
hm := New()
2019-04-22 19:05:25 +00:00
b.N = len(l) * executeCount
2019-05-06 09:01:18 +00:00
// for i := 0; i < len(l); i++ {
// v := l[i]
// hm.Put(v, v)
// }
2019-04-28 10:32:01 +00:00
b.StartTimer()
2019-04-22 19:05:25 +00:00
for c := 0; c < executeCount; c++ {
for i := 0; i < len(l); i++ {
v := l[i]
hm.Put(v, v)
}
2019-04-18 01:39:44 +00:00
}
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-22 19:05:25 +00:00
func BenchmarkGoPut(b *testing.B) {
l := loadTestData()
hm := make(map[int]int)
b.N = len(l) * executeCount
for c := 0; c < executeCount; c++ {
for i := 0; i < len(l); i++ {
v := l[i]
hm[v] = v
}
}
//b.Log(len(m))
//PrintMemUsage()
}
2019-05-07 10:28:45 +00:00
// func BenchmarkGet(b *testing.B) {
// b.StopTimer()
// l := loadTestData()
// hm := New()
// b.N = len(l) * executeCount
// for i := 0; i < len(l); i++ {
// v := l[i]
// hm.Put(v, v)
// }
// b.StartTimer()
// for i := 0; i < b.N; i++ {
// hm.Get(i)
// }
// //b.Log(len(hm.table), hm.size)
// //PrintMemUsage()
// }
// func BenchmarkGoGet(b *testing.B) {
// b.StopTimer()
// l := loadTestData()
// hm := make(map[int]int)
// b.N = len(l) * executeCount
// for i := 0; i < len(l); i++ {
// v := l[i]
// hm[v] = v
// }
// b.StartTimer()
// for i := 0; i < b.N; i++ {
// if _, ok := hm[i]; !ok {
// }
// }
// //b.Log(len(m))
// //PrintMemUsage()
// }