https://github.com/willis7/phrase-trie
Implementation of the Trie search algorithm for finding phrases in a body of text
https://github.com/willis7/phrase-trie
data-structures golang trie
Last synced: 12 months ago
JSON representation
Implementation of the Trie search algorithm for finding phrases in a body of text
- Host: GitHub
- URL: https://github.com/willis7/phrase-trie
- Owner: willis7
- Created: 2018-05-15T21:18:13.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-15T21:18:26.000Z (almost 8 years ago)
- Last Synced: 2025-04-13T16:59:56.281Z (12 months ago)
- Topics: data-structures, golang, trie
- Language: Go
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Phrase Trie
Demonstrates the use of a Trie search to find phrases in a body of text. The body of text needs to be sanitised by removing newline and tab characters; `/n` and `/t` respectively.
## Use Cases
### Searching sensitive content
One application may be to search sensitive content in source code. For example, `AWS_SECRET` or `password =`.
## References
* [Wikipedia](https://en.wikipedia.org/wiki/Trie)