1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
| func Benchmark_RemoveStringDuplicateUseCopy(b *testing.B) {
testString, _ := ioutil.ReadFile("./test.txt")
test := make([]string, len(testString))
for i, v := range testString {
test[i] = string(v)
}
for i := 0; i < b.N; i++ {
RemoveStringDuplicateUseCopy(test)
}
}
func Benchmark_RemoveStringDuplicateUseMap(b *testing.B) {
testString, _ := ioutil.ReadFile("./test.txt")
test := make([]string, len(testString))
for i, v := range testString {
test[i] = string(v)
}
for i := 0; i < b.N; i++ {
RemoveStringDuplicateUseMap(test)
}
}
func Benchmark_RemoveStringDuplicateUseFor(b *testing.B) {
testString, _ := ioutil.ReadFile("./test.txt")
test := make([]string, len(testString))
for i, v := range testString {
test[i] = string(v)
}
for i := 0; i < b.N; i++ {
RemoveStringDuplicateUseFor(test)
}
}
func Benchmark_RemoveStringDuplicateNotCopy(b *testing.B) {
testString, _ := ioutil.ReadFile("./test.txt")
test := make([]string, len(testString))
for i, v := range testString {
test[i] = string(v)
}
for i := 0; i < b.N; i++ {
RemoveStringDuplicateNotCopy(test)
}
}
|