Academia.eduAcademia.edu

Outline

Heuristic Approaches for Solving N-Queens Problem

2011

https://doi.org/10.36785/JAES.V2I2.43

Abstract

The research article examines the three distinguished heuristics approaches for solving the N-Queens problem. The problem is widely recognized as constraint satisfaction problems (CSP) in the domain of Artificial Intelligence. The N-Queens problem demands the non-attacking placements of finite number of queens over chessboard. So that, two or more queens cannot share the horizontal, vertical and diagonal positions in a straight line. In this research work, improved version of Backtracking Recursive Algorithm, modified Min-Conflicts Algorithm and classic Genetic Algorithm are applied to address the problem. The comparative results validate the efficiency of research direction.

FAQs

sparkles

AI

What explains the efficiency of Constraints Logic Programming in tackling N-Queens Problem?add

The study demonstrates that Constraints Logic Programming (CLP) effectively produces numerous feasible solutions through constraint formulation. This approach notably simplifies program modification, crucial for real-world applications like university scheduling.

How does Backtracking Recursive Search improve solution accuracy for N-Queens?add

The Backtracking Recursive Search algorithm enhances accuracy by utilizing recursion and pruning techniques to navigate decision trees. This method often yields results faster for larger datasets compared to classical approaches.

What roles do heuristics play in the Modified Min-Conflict Algorithm?add

The Modified Min-Conflict Algorithm employs heuristics by selecting the highest conflicting queen and minimizing conflicts with each move. It integrates an acceptance criterion similar to Simulated Annealing to resist local optima.

When did notable advancements in heuristic approaches for N-Queens occur?add

Notable advancements in heuristic approaches for N-Queens, such as the use of Genetic Algorithms and Particle Swarm Optimization, have been reported since 2003. Further developments using neural networks were highlighted in Onomi's 2011 research.

Why are empirical results crucial for validating N-Queens solution methods?add

Empirical results provide critical evidence of the effectiveness and efficiency of solution methods like CLP in solving the N-Queens Problem. The experiments conducted on various board sizes demonstrate the reliability of proposed algorithms in practical scenarios.