原创 數據結構之鏈表go言語實現

package main import ( "fmt" "os" ) type Node struct { val int pNode *Node } func create_list() (*Node) { var (