摘要: package main import ( "fmt" ) //可以在初始化时自定义 const Size =10 type Node struct { Val int Next *Node } //结构体指针数组 type Table struct { Array []*Node //value个 阅读全文
posted @ 2021-01-02 14:27 海拉尔 阅读(563) 评论(0) 推荐(0)