Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Which algorithm would fit best to solve a word-search game like "Boggle" with Python

I'm coding a game similar to Boggle where the gamer should find words inside a big string made of random letters.

For example, there are five arrays with strings inside like this. Five rows, made of six letters each one :

AMSDNS
MASDOM
ASDAAS
DSMMMS
OAKSDO

So, the users of the game should make words using the letters available with the following restrictions and rules in mind:

  • Its not possible to repeat the same letter to make a word. Im talking about the "physical" letter, in the game that is a dice. Its not possible to use the same dice twice or more to make the word.
  • Its not possible to "jump" any letter to make a word. The letters that make the word must be contiguous.
  • The user is able to move in any direction she wants without any restriction further than the two mentioned above. So its possible to go to the top, then bottom, then to the right, then top again, and so on. So the movements to look for words might be somehow erratic.

I want to know how to go through all the strings to make words. To know the words Im gonna use a txt file with words.

I don't know how to design an algorithm that is able to perform the search, specially thinking about the erratic movements that are needed to find the words and respecting the restrictions, too.

I already implemented the UX, the logic to throw the dice and fill the boardgame, and all the logic for the six-letters dice.

But this part its not easy, and I would like to read your suggestions to this interesting challenge.

Im using Python for this game because is the language I use to code and the language that I like the most. But an explanation or suggestion of an algorithm itself, should be nice too, independently of the language.

like image 488
Juan Rodríguez Monti Avatar asked Jan 07 '13 07:01

Juan Rodríguez Monti


People also ask

What type of game is word search?

A word search, word find, word seek, word sleuth or mystery word puzzle is a word game that consists of the letters of words placed in a grid, which usually has a rectangular or square shape. The objective of this puzzle is to find and mark all the words hidden inside the box.


2 Answers

The basic algorithm is simple.

  • For each tile, do the following.
    • Start with an empty candidate word, then visit the current tile.
    • Visit a tile by following these steps.
      • Add the tile's position's letter to the candidate word.
      • Is the candidate word a known word? If so, add it to the found word list.
      • Is the candidate word a prefix to any known word?
        • If so, for each adjacent tile that has not been visited to form the candidate word, visit it (i.e., recurse).
        • If not, backtrack (stop considering new tiles for this candidate word).

To make things run smoothly when asking the question "is this word a prefix of any word in my dictionary", consider representing your dictionary as a trie. Tries offer fast lookup times for both words and prefixes.

like image 60
cheeken Avatar answered Oct 23 '22 06:10

cheeken


You might find a Trie useful - put all dictionary words into a Trie, then make another Trie from the Boggle grid, only as long you're matching the dictionary Trie.

I.e. Dictionary trie:

S->T->A->C->K = stack
      \->R->K = stark
         \->T = start

Grid: (simplified)

STARKX 
XXXTXX 
XXXXXX

Grid trie: (only shown starting at S - also start at A for ART, etc)

S->X (no matches in dict Trie, so it stops) 
\->T->X
   \->A-R->K (match)
      | |->T (match)
      | \->X  
      \->C->K (match)
         \->X    

You could visualise your Tries with GraphViz like this.

like image 42
Alex L Avatar answered Oct 23 '22 06:10

Alex L