コード例 #1
0
ファイル: bubble.go プロジェクト: kogai/algorithms
func main() {
	helper.Benchmark(sort, 10000) // 平均値: 305.297838ms
}
コード例 #2
0
ファイル: insert.go プロジェクト: kogai/algorithms
func main() {
	helper.Benchmark(sort, 10000) // 平均値: 165.659119ms
}
コード例 #3
0
ファイル: selection.go プロジェクト: kogai/algorithms
func main() {
	helper.Benchmark(sort, 10000) // 平均値: 205.251865ms
}