clllll  

2023年1月23日

摘要: 0、go语言 自定义 链表节点 type Node struct { Data int Next *Node } type DoubleNode struct { Data int Next *DoubleNode Pre *DoubleNode } 1、单链表反转 1)遍历到当前节点cur,先获取 阅读全文
posted @ 2023-01-23 13:44 llcl 阅读(87) 评论(0) 推荐(0) 编辑