摘要: package mainimport "fmt"type CatNode struct { num int name string next *CatNode}//相对来说为尾部插入func InsertCatNode(head *CatNode, newNode *CatNode) { //如果是 阅读全文
posted @ 2021-07-23 18:39 myu1 阅读(97) 评论(0) 推荐(0)