This project implements Trie search such as
- Check if the Trie contains a word starting with a given prefix
- Check if a word it's contained in the Trie
- Find all the words in the Trie starting with a prefix
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
In order to be able to develop on this project, you will need to install:
Follow this steps to get a development environment running
- Clone the repository
git clone https://github.com/maarkeez/trie.git
- Import the project as Gradle project to your Java development IDE
- Build the project
gradlew clean build -x test
Main tests can be found here
gradlew test
- David Márquez Delgado - Initial work
This project is licensed under GNU General Public License v3.0