摘要: package main import ( "errors" "fmt" "strconv" ) type List struct { Length int Head *Node } type Node struct { NextNode *Node Value int } func (list *List) IsEmpty() bool { return list.Length == 0 } f 阅读全文
posted @ 2019-10-22 18:17 很大的龙 阅读(311) 评论(0) 推荐(0) 编辑