Skip to content

Latest commit

 

History

History
19 lines (15 loc) · 1.03 KB

File metadata and controls

19 lines (15 loc) · 1.03 KB

Backtracking

Backtracking is an algorithmic-technique for solving problems recursively by trying to build a solution incrementally, one piece at a time, removing those solutions that fail to satisfy the constraints of the problem at any point of time (by time, here, is referred to the time elapsed till reaching any level of the search tree).

Some Popular Backtracking Algorithms