mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 13:41:23 +08:00
35 lines
508 B
Go
35 lines
508 B
Go
package trie
|
|
|
|
// Node is the trie's node
|
|
type Node struct {
|
|
children map[string]*Node
|
|
Data any
|
|
}
|
|
|
|
func (n *Node) getChild(s string) *Node {
|
|
if n.children == nil {
|
|
return nil
|
|
}
|
|
|
|
return n.children[s]
|
|
}
|
|
|
|
func (n *Node) hasChild(s string) bool {
|
|
return n.getChild(s) != nil
|
|
}
|
|
|
|
func (n *Node) addChild(s string, child *Node) {
|
|
if n.children == nil {
|
|
n.children = map[string]*Node{}
|
|
}
|
|
|
|
n.children[s] = child
|
|
}
|
|
|
|
func newNode(data any) *Node {
|
|
return &Node{
|
|
Data: data,
|
|
children: nil,
|
|
}
|
|
}
|