一、介绍
go语言提供了原生的双向链表,在源码 src/container/list/list.go
双向链表中,每一个元素有prev,和next两个方向。
文章图片
源码中元素Element对应的 结构体为:
// Element is an element of a linked list.
type Element struct {
//像一个,上下一个元素
next, prev *Element// The list to which this element belongs.
list *List// The value stored with this element.
Value interface{}
}
源码中List的结构体为
type List struct {
root Element // sentinel list element, only &root, root.prev, and root.next are used
lenint// current list length excluding (this) sentinel element
}
通过New()函数,新建一个list。
// New returns an initialized list.
func New() *List { return new(List).Init() }
// Init initializes or clears list l.
func (l *List) Init() *List {
l.root.next = &l.root
l.root.prev = &l.root
l.len = 0
return l
}
【go 源码阅读 container/list】源码中实现一个新list分为两步
1、new一个新list结构体
2、初始化root的元素的 prev以及next
推荐阅读
- go struct json 格式 tag 标签
- let’s go——2022年读书活动招募书(第1期)
- go for循环中的作用域
- go源码阅读 container/ring
- GO实践笔记
- go|vue-element-admin 后台动态加载菜单
- 迈向高级的Java面试突围课|完结
- 2022最新慕课网实战课程大全_资料完整_百度网盘分享
- 执行 go vendor 时第三方包 go 版本冲突问题的解决方法