Basic data structures and operations written in Go which golang.org/pkg/container don't support such as stack, queue, etc.
list | done |
---|---|
trie | 🆗 |
bitmap | 🆗 |
bloom filter | 🆗 |
lru | 🆗 |
heap | 🆗 |
stack | 🆗 |
queue | 🆗 |
dfs | 🆗 |
bfs | 🆗 |
union and find | 🆗 |
skiplist | ❌ |
b | ❌ |
graph | ❌ |
dancing Links | ❌ |
segment tree | ❌ |
huffman tree | ❌ |
package main
import(
"github.com/googege/godata"
)
func main(){
// stack
stack := godata.NewStack(5)
stack.Push(1)
stack.Length()
stack.Top()
stack.Pop()
// trie
trie := NewTrie()
trie.Insert("hello world")
trie.Insert("hello China")
trie.Insert("hello My dear")
trie.Search("hello world")
trie.StartWith("he")
trie.Image("he")
}
项目 | 介绍 |
---|---|
便宜服务器推荐 | 阿里云,梯子服务器:支持支付宝 |
微信公众号 | ![]() |
我的社交平台 | b站 |