Go:LinkedList链表(附完整源码)

Go:LinkedList链表

package LinkedList

type Node struct {
   
	data int
	next *Node
}

type LinkedList struct {
   
	head *Node
}

func (list *LinkedList) 

你可能感兴趣的:(go语言完整教程,链表,golang,数据结构)