https://github.com/maximbilan/ios-crosswords-generator
  
  
    A simple algorithm for generating crosswords written on Swift. Based on Python Crossword Puzzle Generator. 
    https://github.com/maximbilan/ios-crosswords-generator
  
algorithm best-crosswords crossword-generator generating-crosswords ios swift
        Last synced: 4 months ago 
        JSON representation
    
A simple algorithm for generating crosswords written on Swift. Based on Python Crossword Puzzle Generator.
- Host: GitHub
- URL: https://github.com/maximbilan/ios-crosswords-generator
- Owner: maximbilan
- License: mit
- Created: 2015-09-11T13:04:38.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2018-09-22T08:49:19.000Z (about 7 years ago)
- Last Synced: 2025-04-14T07:04:18.730Z (7 months ago)
- Topics: algorithm, best-crosswords, crossword-generator, generating-crosswords, ios, swift
- Language: Swift
- Homepage:
- Size: 63.5 KB
- Stars: 61
- Watchers: 7
- Forks: 11
- Open Issues: 0
- 
            Metadata Files:
            - Readme: README.md
- License: LICENSE
 
Awesome Lists containing this project
README
          # Crosswords Generator
[](http://cocoadocs.org/docsets/CrosswordsGenerator)
[](http://cocoadocs.org/docsets/CrosswordsGenerator)
[](http://cocoadocs.org/docsets/CrosswordsGenerator)
[](https://cocoapods.org/pods/CrosswordsGenerator)
[](https://cocoapods.org/pods/CrosswordsGenerator)
A simple algorithm for generating crosswords with Swift.
Based on  Python Crossword Puzzle Generator.
# Installation
CocoaPods:
pod 'CrosswordsGenerator'
Manual:
Copy CrosswordsGenerator.swift, Array2D.swift, ArrayShuffle.swift files to your project.
# Using
Initialization and crosswords generation:
let generator = CrosswordsGenerator(columns: 10, rows: 10, maxLoops: 2000, words: ["saffron", "pumpernickel", "leaven", "coda", "paladin", "syncopation", "albatross", "harp", "piston", "caramel", "coral", "dawn", "pitch", "fjord", "lip", "lime", "mist", "plague", "yarn", "snicker"])
generator.generate()
To get result:
let result = crosswordsGenerator.result
The result is an array of structures:
public struct Word {
	public var word = ""
	public var column = 0
	public var row = 0
	public var direction: WordDirection = .Vertical
}
The sample of working:
--- Words ---
["pumpernickel", "syncopation", "albatross", "saffron", "paladin",
"caramel", "snicker", "leaven", "piston", "plague", "coral", "pitch",
"fjord", "coda", "harp", "dawn", "lime", "mist", "yarn", "lip"]
--- Result ---
pumpernickel-
---a-------e-
---l-------a-
caramel-f--v-
o--d----j--e-
r--i----o--n-
a-snicker----
l----o--dawn-
-----d-------
----harp-----
-------------
-------------
-------------
To generate the best crosswords in 10 attempts:
let crosswordsGenerator = CrosswordsGenerator()
crosswordsGenerator.words = ["saffron", "pumpernickel", "leaven", "coda", "paladin", "syncopation", "albatross", "harp", "piston", "caramel", "coral", "dawn", "pitch", "fjord", "lip", "lime", "mist", "plague", "yarn", "snicker"]
crosswordsGenerator.columns = 10
crosswordsGenerator.rows = 10
	
var bestResult: Array = Array()
let attempts = 10
		
for var i: Int = 0; i < attempts; ++i {
	crosswordsGenerator.generate()
	let result = crosswordsGenerator.result
			
	if result.count > bestResult.count {
		bestResult.removeAll()
		for word in result {
			bestResult.append(word)
		}
	}
}
To generate the best crosswords in 60 seconds:
let crosswordsGenerator = CrosswordsGenerator()
crosswordsGenerator.words = ["saffron", "pumpernickel", "leaven", "coda", "paladin", "syncopation", "albatross", "harp", "piston", "caramel", "coral", "dawn", "pitch", "fjord", "lip", "lime", "mist", "plague", "yarn", "snicker"]
crosswordsGenerator.columns = 10
crosswordsGenerator.rows = 10
		
var bestResult: Array = Array()
let startTime = NSDate()
let timeInterval: NSTimeInterval = 10
		
while (fabs(startTime.timeIntervalSinceNow) < timeInterval) {
	crosswordsGenerator.generate()
	let result = crosswordsGenerator.result
			
	if result.count > bestResult.count {
		bestResult.removeAll()
		for word in result {
			bestResult.append(word)
		}
	}
}
Also we have option fillAllWords. After generation of crosswords you can fill words to grid in random places that have not intersections. For example:
let crosswordsGenerator = CrosswordsGenerator(columns: 15, rows: 15, words: ["beijing", "havana", "rome", "paris", "amsterdam"])
crosswordsGenerator.fillAllWords = true
crosswordsGenerator.generate()
amsterdam-b-h--
-----o----e-a--
-----m----i-v--
-----e----j-a--
paris-----i-n--
----------n-a--
----------g----
---------------
---------------
In this repository you can find sample of working of this algorithm. Feel free. Happy coding!