2023年7月19日

go 单链表的增加,删除,翻转

摘要: package main import "fmt" //单链的数据结构 type Node struct { value int next *Node } //单链表,head 头结点a56爆大奖在线娱乐单链表 type List struct { head *Node } //创建单链表 func createO 阅读全文

posted @ 2023-07-19 10:01 running-fly 阅读(8) 评论(0) 推荐(0) 编辑