Click here to Skip to main content
15,881,204 members
Articles / Programming Languages / C#

Creating a Crossword Generator

Rate me:
Please Sign up or sign in to vote.
4.98/5 (70 votes)
11 Apr 2018CPOL2 min read 130.2K   6.6K   119   43
Creating an application that can generate crosswords from a list of words
This article describes a simple application that can place a list of words, in either right-to-left or left-to-right language in a matrix, as a crossword.

Background

A crossword is a word puzzle created from a grid of white and black squares, placing words horizontally and vertically on these squares while each two words which cross each other require having an identical letter at the place they are crossed.

The application described and included in this article is useful whenever there is a need to create a mechanism which will place words as a crossword, which would be the first step before composing clues and questions in which their answers will form these words.

Image 1

The Application

While designing this application, there were several guidelines to comply with:

  • Supporting right-to-left languages, such as Hebrew. To comply with this requirement, words in such language go from right to left, when placed horizontally, and still, from top to bottom when placed vertically. Latin words are placed left to right, and from top to bottom.
  • Minimal distance between words placed at the same dimension. Two words placed horizontally or vertically one after the other will have at least one black square separating between the two.
  • An optimization process, used to find the optimal arrangement of any given set of words, which leave a minimum number of black square.
  • Loading words from a file, or placing them manually. The file should be an ASCII one, with one word per line.

The Code

The demo source code was created using C# and Visual Studio 2010.

There are several building blocks:

First, for each word about to be placed, we check if this place is valid:

C#
bool IsValidPosition(int x , int y)
{  
     return x >= 0 && y >= 0 && x < _n && y < _m;
}   

Even if the position is valid, we also check if there is no other word crossing the word we are about to place, and if there is, the crossing point must have the same letter, both for the word placed horizontally and the word placed vertically.

C#
int CanBePlaced(string word, int x, int y, int dir)
{
            var result = 0;
            if (dir == 0)
            {
                for (var j = 0; j < word.Length; j++)
                {
                    int x1 = x, y1 = y + j;
                    if (!(IsValidPosition(x1, y1) && (_board[x1, y1] == ' ' || 
                                                      _board[x1, y1] == word[j])))
                        return -1;
                    if (IsValidPosition(x1 - 1, y1))
                        if (_hWords[x1 - 1, y1] > 0)
                            return -1;
                    if (IsValidPosition(x1 + 1, y1))
                        if (_hWords[x1 + 1, y1] > 0)
                            return -1;
                    if (_board[x1, y1] == word[j])
                        result++;
                }
            }
            else
            {
                for (var j = 0; j < word.Length; j++)
                {
                    int x1 = x + j, y1 = y;
                    if (!(IsValidPosition(x1, y1) && (_board[x1, y1] == ' ' || 
                                                      _board[x1, y1] == word[j])))
                        return -1;
                    if (IsValidPosition(x1, y1 - 1))
                        if (_vWords[x1, y1 - 1] > 0)
                            return -1;
                    if (IsValidPosition(x1, y1 + 1))
                        if (_vWords[x1, y1 + 1] > 0)
                            return -1;
                    if (_board[x1, y1] == word[j])
                        result++;
                }
            }
            int xStar = x - _dirX[dir], yStar = y - _dirY[dir];
            if (IsValidPosition(xStar, yStar))
                if (!(_board[xStar, yStar] == ' ' || _board[xStar, yStar] == '*'))
                    return -1;
            xStar = x + _dirX[dir]*word.Length;
            yStar = y + _dirY[dir]*word.Length;
            if (IsValidPosition(xStar, yStar))
                if (!(_board[xStar, yStar] == ' ' || _board[xStar, yStar] == '*'))
                    return -1;
            return result == word.Length ? -1 : result;
        }

Then, when we actually place the word, we call:

C#
void PutWord(string word , int x , int y , int dir, int value)
{
    var mat = dir==0 ? _hWords :_vWords;
    for (var i = 0; i < word.Length; i++)
    {
        int x1 = x + _dirX[dir]*i, y1 = y + _dirY[dir]*i;
        _board[x1, y1] = word[i];
        mat[x1, y1] = value;
    }
    int xStar = x - _dirX[dir], yStar = y - _dirY[dir];
    if (IsValidPosition(xStar, yStar)) _board[xStar, yStar] = '*';
    xStar = x + _dirX[dir]*word.Length;
    yStar = y + _dirY[dir]*word.Length;
    if (IsValidPosition(xStar, yStar)) _board[xStar, yStar] = '*';
}

This application is meant only for demonstration purposes. It creates a matrix of 13 X 17. The "Optimize" button tries to place the list of given words randomly while seeking for the optimal result for up to 1 minute. Obviously, this is not optimizing, and there can be many improvements, which will be more than welcome.

History

  • 19th January, 2013: Initial version

Michael Haephrati, CodeProject MVP 2013

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
CEO Secured Globe, Inc.
United States United States
Michael Haephrati is a music composer, an inventor and an expert specializes in software development and information security, who has built a unique perspective which combines technology and the end user experience. He is the author of a the book Learning C++ , which teaches C++ 20, and was published in August 2022.

He is the CEO of Secured Globe, Inc., and also active at Stack Overflow.

Read our Corporate blog or read my Personal blog.





Comments and Discussions

 
GeneralMy vote of 3 Pin
Azziet23-Jan-13 1:20
Azziet23-Jan-13 1:20 
GeneralMy vote of 5 Pin
Agent__00722-Jan-13 22:52
professionalAgent__00722-Jan-13 22:52 
QuestionVery cool! Pin
Frosty721-Jan-13 9:29
professionalFrosty721-Jan-13 9:29 
GeneralMy vote of 5 Pin
kentclark51920-Jan-13 4:54
kentclark51920-Jan-13 4:54 
GeneralRe: My vote of 5 Pin
Michael Haephrati20-Jan-13 5:13
professionalMichael Haephrati20-Jan-13 5:13 
GeneralMy vote of 5 Pin
faruk19683020-Jan-13 1:59
faruk19683020-Jan-13 1:59 
GeneralMy vote of 5 Pin
srinivasreddypg19-Jan-13 22:04
srinivasreddypg19-Jan-13 22:04 
GeneralMy vote of 5 Pin
nayeemsazzad19-Jan-13 21:52
nayeemsazzad19-Jan-13 21:52 
Outstanding Article !!
GeneralMy vote of 5 Pin
arif111114219-Jan-13 21:41
arif111114219-Jan-13 21:41 
GeneralMy vote of 5 Pin
John Klinner19-Jan-13 21:13
John Klinner19-Jan-13 21:13 
GeneralMy vote of 5 Pin
evan89719-Jan-13 10:39
evan89719-Jan-13 10:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.