Design
backtrak.txt
Associated article: Backtracking Algorithms
Tags: Design
Published source code accompanying the article by Timothy Rolfe in which he examines backtracking algorithms that let you systematically search for solutions to problems among all available options. Also see BACKTRAK.ZIP.
Backtracking Algorithms
by Timothy Rolfe
Listing One
// Set remaining values into position size and recurse (if needed)
void Cloque::build ( IntQueue &work, int posn )
{ if ( work.isEmpty() ) // Face has been completed
{ if ( face[posn-1] < face[1] ) // Omit the mirror ...


