An open API service indexing awesome lists of open source software.

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

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.