selectionSort_test
selectionSort_test.go 源码
package sort
import (
"fmt"
"math/rand"
"testing"
"time"
)
func TestSelectionSort(t *testing.T) {
//只有一个数据时能否正常运行
one := []int{1}
selectionSort(one)
fmt.Println(one)
//只有两个数据时能否正常运行
two := []int{3, 1}
selectionSort(two)
fmt.Println(two)
//多个数据时是否正常运行
var data []int
rand.Seed(time.Now().Unix())
for i := 0; i < length; i++ {
data = append(data, rand.Intn(1000))
}
selectionSort(data)
fmt.Println(data)
}
你可能感兴趣的文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦