GithubHelp home page GithubHelp logo

boggle-trie-solver's Introduction

Boggle

BoggleSolverTrie contains methods for solving Boggle boards. You must provide it a dictionary as a HashSet<String> or List<String>.

You then provide it a single board as a String[], or multiple boards as a List<String[]>, and it will return all words found on the board as List<String>, or all boards as List<List<String>>.

It used a Trie data structure to hold the dictionary. The solve method uses a recursive depth first search to go through every possible combination of dice. Since this uses a Trie structure though, at every step we can check to see if we are either on the end of a word (and add it to the solved List), or if we are on a prefix to another word. If we are not on a valid prefix, we can return, and skip going any further down this branch, as there is no valid word to be found.

This makes solving boggle boards very fast, with this approach, this method can solve 1000+ boards per second.

boggle-trie-solver's People

Contributors

jimmatthew avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.