Golang基于前缀树的敏感词过滤算法

一个简单的基于Golang的敏感词过滤算法package mainimport ( “fmt” “unicode/utf8”)// 敏感词过滤type Trie struct { child map[rune]*Trie word string}//