by
zoranh on 07-16-2010 at 02:57 PM
n-Puzzle is a matrix of tiles with one tile missing, as given in the following picture:

Most notorious n-puzzles are 8-puzzle (3x3 tiles) and 15-puzzle (4x4 tiles).
Solving the n-puzzle is a typical informed search problem. It is search problem because program solving the puzzle must search through valid states of the puzzle in order to find a sequence of moves that transform a puzzle from any valid starting position into the solved state. It
Read More
Updated 10-27-2010 at 04:21 PM by zoranh
(Added link to continued article.)
- Categories
-
Programming