fix(go): fix support basic pkg
This commit is contained in:
parent
07a359484b
commit
aa7a32efe0
@ -18,7 +18,7 @@ func TestLinearSearch(t *testing.T) {
|
||||
t.Log("目标元素 3 的索引 = ", index)
|
||||
|
||||
// 在链表中执行线性查找
|
||||
head := ArrayToLinkedListLinkedList(nums)
|
||||
head := ArrayToLinkedList(nums)
|
||||
node := linerSearchLinkedList(head, target)
|
||||
t.Log("目标结点值 3 的对应结点对象为 ", node)
|
||||
}
|
||||
|
@ -24,8 +24,8 @@ func NewListNode(v int) *ListNode {
|
||||
}
|
||||
}
|
||||
|
||||
// ArrayToLinkedListLinkedList Generate a linked list with an array
|
||||
func ArrayToLinkedListLinkedList(arr []int) *ListNode {
|
||||
// ArrayToLinkedList Generate a linked list with an array
|
||||
func ArrayToLinkedList(arr []int) *ListNode {
|
||||
// dummy header of linked list
|
||||
dummy := NewListNode(0)
|
||||
node := dummy
|
||||
|
@ -8,7 +8,7 @@ import "testing"
|
||||
|
||||
func TestListNode(t *testing.T) {
|
||||
arr := []int{2, 3, 5, 6, 7}
|
||||
head := ArrayToLinkedListLinkedList(arr)
|
||||
head := ArrayToLinkedList(arr)
|
||||
|
||||
PrintLinkedList(head)
|
||||
node := GetListNode(head, 5)
|
||||
|
Loading…
Reference in New Issue
Block a user