Comparison of algorithmic approaches to the N queens problem
Posted
by iceman
on Stack Overflow
See other posts from Stack Overflow
or by iceman
Published on 2009-08-11T22:43:36Z
Indexed on
2010/05/22
23:30 UTC
Read the original article
Hit count: 314
algorithm
|backtracking
I wanted to evaluate performance comparisons for various approaches to solving the N queens problem. Mainly AI metaheuristics based algorithms like simulated annealing, tabu search and genetic algorithm etc compared to exact methods(like backtracking). Is there any code available for study? A lot of real-world optimization problems like it consider cooperative schemes between exact methods and metaheuristics.
© Stack Overflow or respective owner