Repository Details
Shared by


HelloGitHub Rating
0 ratings
Claim
Discuss
Collect
Share
17.1k
Stars
No
Chinese
Go
Language
No
Active
33
Contributors
70
Issues
No
Organization
1.18.1
Latest
2k
Forks
None
License
More
简单易用的 Go 语言各种数据结构和算法,并封装成了一个库,开箱即食。示例代码:
```go
type Stack interface {
Push(value interface{})
Pop() (value interface{}, ok bool)
Peek() (value interface{}, ok bool)
containers.Container
// Empty() bool
// Size() int
// Clear()
// Values() []interface{}
}
```
Included in:
Vol.45
Comments
Rating:
No comments yet