Backtracking is an algorithmic paradigm that tries different solutions until finds a solution that “works”. Problems which are typically solved using backtracking technique have following property in common. These problems can only be solved by trying every possible configuration and each configuration is tried only once. A Naive solution for these problems is to try all configurations and output a configuration that follows given problem constraints. Backtracking works in incremental way and is an optimization over the Naive solution where all possible configurations are generated and tried.

For example, consider the following Knight’s Tour problem.
The knight is placed on the first block of an empty board and, moving according to the rules of chess, must visit each square exactly once.

Path followed by Knight to cover all the cells

Following is chessboard with 8 x 8 cells. Numbers in cells indicate move number of Knight.
knight-tour-problem
Let us first discuss the Naive algorithm for this problem and then the Backtracking algorithm.

[ad type=”banner”]

Naive Algorithm for Knight’s tour
The Naive Algorithm is to generate all tours one by one and check if the generated tour satisfies the constraints.

while there are untried tours
{ 
   generate the next tour 
   if this tour covers all squares 
   { 
      print this path;
   }
}

Backtracking works in an incremental way to attack problems. Typically, we start from an empty solution vector and one by one add items (Meaning of item varies from problem to problem. In context of Knight’s tour problem, an item is a Knight’s move). When we add an item, we check if adding the current item violates the problem constraint, if it does then we remove the item and try other alternatives. If none of the alternatives work out then we go to previous stage and remove the item added in the previous stage. If we reach the initial stage back then we say that no solution exists. If adding an item doesn’t violate constraints then we recursively add items one by one. If the solution vector becomes complete then we print the solution.

Backtracking Algorithm for Knight’s tour
Following is the Backtracking algorithm for Knight’s tour problem.

If all squares are visited
print the solution
Else

  •  Add one of the next moves to solution vector and recursively
    check if this move leads to a solution. (A Knight can make maximum
    eight moves. We choose one of the 8 moves in this step).
  • If the move chosen in the above step doesn’t lead to a solution
    then remove this move from the solution vector and try other
    alternative moves.
  •  If none of the alternatives work then return false (Returning false
    will remove the previously added item in recursion and if false is
    returned by the initial call of recursion then “no solution exists” )

Following are implementations for Knight’s tour problem. It prints one of the possible solutions in 2D matrix form. Basically, the output is a 2D 8*8 matrix with numbers from 0 to 63 and these numbers show steps made by Knight.

[ad type=”banner”] C Progrmming

[pastacode lang=”c” manual=”%2F%2F%20C%20program%20for%20Knight%20Tour%20problem%0A%23include%3Cstdio.h%3E%0A%23define%20N%208%0A%20%0Aint%20solveKTUtil(int%20x%2C%20int%20y%2C%20int%20movei%2C%20int%20sol%5BN%5D%5BN%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20int%20xMove%5B%5D%2C%20%20int%20yMove%5B%5D)%3B%0A%20%0A%2F*%20A%20utility%20function%20to%20check%20if%20i%2Cj%20are%20valid%20indexes%0A%20%20%20for%20N*N%20chessboard%20*%2F%0Abool%20isSafe(int%20x%2C%20int%20y%2C%20int%20sol%5BN%5D%5BN%5D)%0A%7B%0A%20%20%20%20return%20(%20x%20%3E%3D%200%20%26%26%20x%20%3C%20N%20%26%26%20y%20%3E%3D%200%20%26%26%0A%20%20%20%20%20%20%20%20%20%20%20%20%20y%20%3C%20N%20%26%26%20sol%5Bx%5D%5By%5D%20%3D%3D%20-1)%3B%0A%7D%0A%20%0A%2F*%20A%20utility%20function%20to%20print%20solution%20matrix%20sol%5BN%5D%5BN%5D%20*%2F%0Avoid%20printSolution(int%20sol%5BN%5D%5BN%5D)%0A%7B%0A%20%20%20%20for%20(int%20x%20%3D%200%3B%20x%20%3C%20N%3B%20x%2B%2B)%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20for%20(int%20y%20%3D%200%3B%20y%20%3C%20N%3B%20y%2B%2B)%0A%20%20%20%20%20%20%20%20%20%20%20%20printf(%22%20%252d%20%22%2C%20sol%5Bx%5D%5By%5D)%3B%0A%20%20%20%20%20%20%20%20printf(%22%5Cn%22)%3B%0A%20%20%20%20%7D%0A%7D%0A%20%0A%2F*%20This%20function%20solves%20the%20Knight%20Tour%20problem%20using%0A%20%20%20Backtracking.%20%20This%20function%20mainly%20uses%20solveKTUtil()%0A%20%20%20to%20solve%20the%20problem.%20It%20returns%20false%20if%20no%20complete%0A%20%20%20tour%20is%20possible%2C%20otherwise%20return%20true%20and%20prints%20the%0A%20%20%20tour.%0A%20%20%20Please%20note%20that%20there%20may%20be%20more%20than%20one%20solutions%2C%0A%20%20%20this%20function%20prints%20one%20of%20the%20feasible%20solutions.%20%20*%2F%0Abool%20solveKT()%0A%7B%0A%20%20%20%20int%20sol%5BN%5D%5BN%5D%3B%0A%20%0A%20%20%20%20%2F*%20Initialization%20of%20solution%20matrix%20*%2F%0A%20%20%20%20for%20(int%20x%20%3D%200%3B%20x%20%3C%20N%3B%20x%2B%2B)%0A%20%20%20%20%20%20%20%20for%20(int%20y%20%3D%200%3B%20y%20%3C%20N%3B%20y%2B%2B)%0A%20%20%20%20%20%20%20%20%20%20%20%20sol%5Bx%5D%5By%5D%20%3D%20-1%3B%0A%20%0A%20%20%20%20%2F*%20xMove%5B%5D%20and%20yMove%5B%5D%20define%20next%20move%20of%20Knight.%0A%20%20%20%20%20%20%20xMove%5B%5D%20is%20for%20next%20value%20of%20x%20coordinate%0A%20%20%20%20%20%20%20yMove%5B%5D%20is%20for%20next%20value%20of%20y%20coordinate%20*%2F%0A%20%20%20%20int%20xMove%5B8%5D%20%3D%20%7B%20%202%2C%201%2C%20-1%2C%20-2%2C%20-2%2C%20-1%2C%20%201%2C%20%202%20%7D%3B%0A%20%20%20%20int%20yMove%5B8%5D%20%3D%20%7B%20%201%2C%202%2C%20%202%2C%20%201%2C%20-1%2C%20-2%2C%20-2%2C%20-1%20%7D%3B%0A%20%0A%20%20%20%20%2F%2F%20Since%20the%20Knight%20is%20initially%20at%20the%20first%20block%0A%20%20%20%20sol%5B0%5D%5B0%5D%20%20%3D%200%3B%0A%20%0A%20%20%20%20%2F*%20Start%20from%200%2C0%20and%20explore%20all%20tours%20using%0A%20%20%20%20%20%20%20solveKTUtil()%20*%2F%0A%20%20%20%20if%20(solveKTUtil(0%2C%200%2C%201%2C%20sol%2C%20xMove%2C%20yMove)%20%3D%3D%20false)%0A%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20printf(%22Solution%20does%20not%20exist%22)%3B%0A%20%20%20%20%20%20%20%20return%20false%3B%0A%20%20%20%20%7D%0A%20%20%20%20else%0A%20%20%20%20%20%20%20%20printSolution(sol)%3B%0A%20%0A%20%20%20%20return%20true%3B%0A%7D%0A%20%0A%2F*%20A%20recursive%20utility%20function%20to%20solve%20Knight%20Tour%0A%20%20%20problem%20*%2F%0Aint%20solveKTUtil(int%20x%2C%20int%20y%2C%20int%20movei%2C%20int%20sol%5BN%5D%5BN%5D%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20int%20xMove%5BN%5D%2C%20int%20yMove%5BN%5D)%0A%7B%0A%20%20%20int%20k%2C%20next_x%2C%20next_y%3B%0A%20%20%20if%20(movei%20%3D%3D%20N*N)%0A%20%20%20%20%20%20%20return%20true%3B%0A%20%0A%20%20%20%2F*%20Try%20all%20next%20moves%20from%20the%20current%20coordinate%20x%2C%20y%20*%2F%0A%20%20%20for%20(k%20%3D%200%3B%20k%20%3C%208%3B%20k%2B%2B)%0A%20%20%20%7B%0A%20%20%20%20%20%20%20next_x%20%3D%20x%20%2B%20xMove%5Bk%5D%3B%0A%20%20%20%20%20%20%20next_y%20%3D%20y%20%2B%20yMove%5Bk%5D%3B%0A%20%20%20%20%20%20%20if%20(isSafe(next_x%2C%20next_y%2C%20sol))%0A%20%20%20%20%20%20%20%7B%0A%20%20%20%20%20%20%20%20%20sol%5Bnext_x%5D%5Bnext_y%5D%20%3D%20movei%3B%0A%20%20%20%20%20%20%20%20%20if%20(solveKTUtil(next_x%2C%20next_y%2C%20movei%2B1%2C%20sol%2C%0A%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20%20xMove%2C%20yMove)%20%3D%3D%20true)%0A%20%20%20%20%20%20%20%20%20%20%20%20%20return%20true%3B%0A%20%20%20%20%20%20%20%20%20else%0A%20%20%20%20%20%20%20%20%20%20%20%20%20sol%5Bnext_x%5D%5Bnext_y%5D%20%3D%20-1%3B%2F%2F%20backtracking%0A%20%20%20%20%20%20%20%7D%0A%20%20%20%7D%0A%20%0A%20%20%20return%20false%3B%0A%7D%0A%20%0A%2F*%20Driver%20program%20to%20test%20above%20functions%20*%2F%0Aint%20main()%0A%7B%0A%20%20%20%20solveKT()%3B%0A%20%20%20%20return%200%3B%0A%7D” message=”C” highlight=”” provider=”manual”/]

Output:

  0  59  38  33  30  17   8  63
 37  34  31  60   9  62  29  16
 58   1  36  39  32  27  18   7
 35  48  41  26  61  10  15  28
 42  57   2  49  40  23   6  19
 47  50  45  54  25  20  11  14
 56  43  52   3  22  13  24   5
 51  46  55  44  53   4  21  12

Note that Backtracking is not the best solution for the Knight’s tour problem. See below article for other better solutions. The purpose of this post is to explain Backtracking with an example.

[ad type=”banner”]