Google News
logo
Algorithm - Interview Questions
what is the Backtracking Algorithm?
In this tutorial, you will learn what a backtracking algorithm is. Also, you will find an example of a backtracking approach.
 
A backtracking algorithm is a problem-solving algorithm that uses a brute force approach for finding the desired output.
 
The term backtracking suggests that if the current solution is not suitable, then backtrack and try other solutions. Thus, recursion is used in this approach.
 
This approach is used to solve problems that have multiple solutions. If you want an optimal solution, you must go for dynamic programming.
 
Backtracking Algorithm
Backtrack(x)
    if x is not a solution
        return false
    if x is a new solution
        add to list of solutions
    backtrack(expand x)
Example Backtracking Approach

Problem : You want to find all the possible ways of arranging 2 boys and 1 girl on 3 benches. Constraint: Girl should not be on the middle bench.
 
Solution : There are a total of 3! = 6 possibilities. We will try all the possibilities and get the possible solutions. We recursively try all the possibilities.
 
All the possibilities are :
Backtracking Algorithm
Advertisement