select_tree/main.go
2020-09-28 17:22:43 +08:00

12 lines
169 B
Go

package main
// Key 使用的Key类型, 便于函数处理的归类
type Key []byte
// Node 节点
type Node struct {
Hash uint64
Keys []*Key
Value interface{}
}