文件名称:godata:golang常用数据结构实现.Tags
文件大小:5KB
文件格式:ZIP
更新时间:2024-06-03 22:59:09
Go
#godata (Go Data Structrues) Golang基础数据结构实现 ##数据结构 ###Collection 集合接口,所有结构都应该实现的接口,提供集合都应该有的方法集合。 Collection接口包含的方法如下: package collection type Collection interface { //return the number of elements in this collection Size() int //return true if this collection contains no elements IsEmpty() bool //clear the collection Clear() //return slice of the collection's element Values() []interf
【文件预览】:
godata-master
----collection()
--------collection.go(387B)
----example()
--------arrayList.go(594B)
----list()
--------list.go(314B)
--------arrayList()
----.gitignore(184B)
----README.md(2KB)