hello-algo/codes/go/chapter_searching/linear_search_test.go

26 lines
580 B
Go
Raw Normal View History

2022-11-25 12:24:51 +00:00
// File: linear_search_test.go
// Created Time: 2022-11-25
// Author: Reanon (793584285@qq.com)
package chapter_searching
import (
"testing"
. "github.com/krahets/hello-algo/pkg"
2022-11-25 12:24:51 +00:00
)
func TestLinearSearch(t *testing.T) {
target := 3
nums := []int{1, 5, 3, 2, 4, 7, 5, 9, 10, 8}
// 在数组中执行线性查找
index := linerSearchArray(nums, target)
t.Log("目标元素 3 的索引 =", index)
2022-11-25 12:24:51 +00:00
// 在链表中执行线性查找
2022-11-25 17:17:48 +00:00
head := ArrayToLinkedList(nums)
2022-11-25 12:24:51 +00:00
node := linerSearchLinkedList(head, target)
t.Log("目标结点值 3 的对应结点对象为", node)
2022-11-25 12:24:51 +00:00
}