
Product
Introducing Tier 1 Reachability: Precision CVE Triage for Enterprise Teams
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
github.com/dmichael/go-trie
A simple trie in Golang
This implementation is derived (not transcribed) from the Java version as detailed in the excellent Algorithms by Robert Sedgewick and Kevin Wayne. I recommend this text without reservation. It is detailed, thorough, and very affordable.
If you would like to use this package, you may do something as follows. Please be aware this package may not be production ready and the implementation is incomplete.
package main
import (
"fmt"
"github.com/dmichael/go-trie/trie"
)
var dict = []string{"she", "sells", "sea", "shells", "by", "the", "sea", "shore"}
func main() {
t := trie.NewTrie()
for _, word := range dict {
t.Put(word)
}
matches := t.KeysWithPrefix("she")
fmt.Println(matches)
}
$ go run main.go
# => [she shells]
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Product
Socket’s new Tier 1 Reachability filters out up to 80% of irrelevant CVEs, so security teams can focus on the vulnerabilities that matter.
Research
/Security News
Ongoing npm supply chain attack spreads to DuckDB: multiple packages compromised with the same wallet-drainer malware.
Security News
The MCP Steering Committee has launched the official MCP Registry in preview, a central hub for discovering and publishing MCP servers.