Dictionary
Thesaurus
Quotes
Encyclopedia
Translator
Did you know: What emotions are associated with the color purple?

backtracking

 - 4 dictionary results

back·track

[bak-trak]
–verb (used without object)
1.
to return over the same course or route.
2.
to withdraw from an undertaking, position, etc.; reverse a policy.

Origin:
1715–25, Americanism; back2 + track
Dictionary.com Unabridged
Based on the Random House Dictionary, © Random House, Inc. 2010.
Cite This Source Link To backtracking
World English Dictionary
backtrack (ˈbækˌtræk) [Click for IPA pronunciation guide]
 
vb
1.  to return by the same route by which one has come
2.  to retract or reverse one's opinion, action, policy, etc
 
'backtracking
 
n

Collins English Dictionary - Complete & Unabridged 10th Edition
2009 © William Collins Sons & Co. Ltd. 1979, 1986 © HarperCollins
Publishers 1998, 2000, 2003, 2005, 2006, 2007, 2009
Cite This Source
Word Origin & History

backtrack
"retrace one's steps," 1904, from back (adj.) + track (v.).
Online Etymology Dictionary, © 2010 Douglas Harper
Cite This Source
Computing Dictionary

backtracking definition

algorithm
A scheme for solving a series of sub-problems each of which may have multiple possible solutions and where the solution chosen for one sub-problem may affect the possible solutions of later sub-problems.
To solve the overall problem, we find a solution to the first sub-problem and then attempt to recursively solve the other sub-problems based on this first solution. If we cannot, or we want all possible solutions, we backtrack and try the next possible solution to the first sub-problem and so on. Backtracking terminates when there are no more solutions to the first sub-problem.
This is the algorithm used by logic programming languages such as Prolog to find all possible ways of proving a goal. An optimisation known as "intelligent backtracking" keeps track of the dependencies between sub-problems and only re-solves those which depend on an earlier solution which has changed.
Backtracking is one algorithm which can be used to implement nondeterminism. It is effectively a depth-first search of a problem space.
(1995-04-13)

The Free On-line Dictionary of Computing, © Denis Howe 2010 http://foldoc.org
Cite This Source
Search another word or see backtracking on Thesaurus | Reference