https://github.com/voliveirajr/kwords
A Java Library that uses Trie structure to retrieve a K most recurring words
https://github.com/voliveirajr/kwords
java recurring recurring-words trie-node trie-structure trie-tree tries trietree
Last synced: 8 months ago
JSON representation
A Java Library that uses Trie structure to retrieve a K most recurring words
- Host: GitHub
- URL: https://github.com/voliveirajr/kwords
- Owner: voliveirajr
- License: gpl-3.0
- Created: 2015-06-15T14:23:09.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2019-02-28T14:02:48.000Z (over 6 years ago)
- Last Synced: 2024-12-27T15:27:51.846Z (9 months ago)
- Topics: java, recurring, recurring-words, trie-node, trie-structure, trie-tree, tries, trietree
- Language: Java
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# kwords
This is a lib for find the K most recurring words for an underterminated number of words.
One application of that could be build an Word Cloud on your site.This lib uses a Trie Structure to store the words and your counts and a TreeSet to retrieve them ordered.