摘要: 面试遇到翻转链表,很简单但是还是翻车了,不仅要能写,关键自己要写测试例子 package main import "fmt" //链表节点 type Node struct{ Next *Node value int } //构建 func Create(array []int)*Node{ roo 阅读全文
posted @ 2021-01-27 11:21 海拉尔 阅读(308) 评论(0) 推荐(0) 编辑