Backtracking


Algorithm Series 2

Backtracking

What is Backtracking?
Backtracking is a general algorithm for finding all (or some) solutions to some computational problem, which incrementally builds candidates to the solutions, and abandons each partial candidate ("backtracks") as soon as it determines that c cannot possibly be completed to a valid solution.
1. Define a systematic generation order to avoid both repetitions and missing.
2. Viewing backtracking as a depth-first search on an implicit graph.
How?
At each step in the backtracking algorithm, we try to extend a given partial solution a=(a1,a2, ..., ak) by adding another element at the end. After extending it, we must test whether what we now have is a solution: if so, we should print it or count it. If not, we must check whether the partial solution is still potentially extendible to some complete solution.
If all has been tried and nothing worked, return false to trigger backtracking.

Backtracking procedures are characterized by multiple recursive calls, typically within a loop.

 backtrack(int a[], int k, data input)  
 {  
   int c[MAXCANDIDATES]; /* candidates for next position */  
   if (is_a_solution(a,k,input))  
   process_solution(a,k,input);  
   else {  
     k = k+1;  
     construct_candidates(a,k,input,c);  
     for (i=0; i<ncandidates; i++) {  
       a[k] = c[i];  
       make_move(a,k,input);  
       backtrack(a,k,input);  
       unmake_move(a,k,input);  
     }  
   }  
 }  
Search Pruning
Pruning is the technique of cutting of the search the instant we have established that a partial solution cannot be extended into a full solution.

Cutting paths that are known (doomed) to be dead-ends as early as possible.
When to use backtracking?
Backtracking is used to solve problems for which a sequence of objects is to be selected from a set such that the sequence satisfies some constraint.


Examples
Puzzle of N Queens
 public void PlaceQueen(int row){  
  if (row == 8) {  
    printBoard();  
    return;   
  }  
  for (int i = 0; i < 8; i++) {  
    columnForRow[row]=i;  
    if(isConsistent(row)){  
    PlaceQueen(row+1);  
    }  
  }  
 }  

Solving a maze
Maze Generation and solver

Sudoku Solver

Generating Permutations - O(n!)
Random permutation, Partial Permutation [TODO]

Generating Subsets - O(2^n)
Solution:
Generating all subsets then really just comes down to generating all binary numbers (that is, all integers).
Random Subset, Partial Subset[Same solution as above]

Generating Partitions
Generate (1) all, or (2) a random, or (3) the next integer or set partitions of length n.
Integer Partitions [TODO]

Set partitions [TODO]
To permute set S, we can select the frst character, A1, permute the remainder of the string to get a new list then, with that new list, we can "push" A1 into each possible position

Constructing All Paths in a Graph
Constructing all paths between two vertices

Other Examples
Find how many pairs in the given array sum to a given number
Find the number of trailing zeroes in the factorial of a given number.

Resources:

Labels

adsense (5) Algorithm (69) Algorithm Series (35) Android (7) ANT (6) bat (8) Big Data (7) Blogger (14) Bugs (6) Cache (5) Chrome (19) Code Example (29) Code Quality (7) Coding Skills (5) Database (7) Debug (16) Design (5) Dev Tips (63) Eclipse (32) Git (5) Google (33) Guava (7) How to (9) Http Client (8) IDE (7) Interview (88) J2EE (13) J2SE (49) Java (186) JavaScript (27) JSON (7) Learning code (9) Lesson Learned (6) Linux (26) Lucene-Solr (112) Mac (10) Maven (8) Network (9) Nutch2 (18) Performance (9) PowerShell (11) Problem Solving (11) Programmer Skills (6) regex (5) Scala (6) Security (9) Soft Skills (38) Spring (22) System Design (11) Testing (7) Text Mining (14) Tips (17) Tools (24) Troubleshooting (29) UIMA (9) Web Development (19) Windows (21) xml (5)