go pushback 源码
golang pushback 代码
文件路径:/src/cmd/compile/internal/ssa/testdata/pushback.go
package main
type Node struct {
Circular bool
}
type ExtNode[V any] struct {
v V
Node
}
type List[V any] struct {
root *ExtNode[V]
len int
}
func (list *List[V]) PushBack(arg V) {
if list.len == 0 {
list.root = &ExtNode[V]{v: arg}
list.root.Circular = true
list.len++
return
}
list.len++
}
func main() {
var v List[int]
v.PushBack(1)
}
相关信息
相关文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦