package
Version:
v0.1.2
Opens a new window with list of versions in this module.
Published: Dec 28, 2024
License: Apache-2.0
Opens a new window with license information.
Imports: 2
Opens a new window with list of imports.
Imported by: 0
Opens a new window with list of known importers.
Documentation
¶
type Trie[V any] struct {
}
删除有两种方法, 这里先选择第1种,后面有时间再压测下第二种效率如何
1.记录rune和节点,删除这个节点。如果是子节点,再回溯删除
2.声明一个parent指针,不记录过程节点,直接p = n.parent; p != nil; p=p.parent 回溯删除
Source Files
¶
Click to show internal directories.
Click to hide internal directories.