Wikipedia about DFS

Depth-first search (DFS) is an algorithm for traversing or searching a tree, tree structure, or graph. One starts at the root (selecting some node as the root in the graph case) and explores as far as possible along each branch before backtracking.

So is BFS?

"an algorithm that choose a starting node, checks all nodes -- backtracks --, chooses the shortest path, chose neighbour nodes -- backtracks --, chose the shortest path -- finally finds the optimal path because of traversing each path due to continuos backtracking.

Regex, find's pruning -- backtracking?

The term backtracking confuseses due to its variety of use. UNIX find's pruning an SO-user explained with backtracking. Regex Buddy uses the term "catastrophic backtracking" if you do not limit the scope of your Regexes. It seems to be too wide umbrella-term. So:

  1. how do you define "Backtracking" GRAPH-theoretically?
  2. what is "backtracking" in BFS and DFS?

[Added]

Good defs about backtracking and examples

  1. like brute-force-method
  2. Stallman's (?) invented term "dependency-directed backtracking" --
  3. backtracking and regex example
  4. DFS def.
link|improve this question

feedback

1 Answer

The confusion comes in because backtracking is something that happens during search, but it also refers to a specific problem-solving technique where a lot of backtracking is done. Such programs are called backtrackers.

Picture someone driving into a neighborhood, always taking the first turn he sees (let's assume there aren't any loops) until he hits a dead end. After the dead end, he then drives back to the intersection of the last unseen street. This the "first" kind of backtracking, and it's roughly equivalent to colloquial usage of the word.

Again, the more specific kind refers to a problem-solving strategy that is similar to depth-first search but adds logic to see if a particular branch is not worth going down.

DFS is uninformed; it blindly visits each node until it reaches the goal. It "backtracks" on leaf nodes (for a graph: terminal vertices). But a backtracker earns the name by also backtracking on useless branches, effectively pruning them. One example is searching a Boggle board for words. Each tile is surrounded by 8 others, so the tree gets very large, and dumb DFS might take too long. Why not ignore combinations like "ZZQ," since adding more letters won't ever make them into a word? Adding that logic makes it a backtracker.

I love these lectures by Julie Zelenski. She solves 8 queens, a sudoku puzzle, and a number substitution puzzle using backtracking, and everything is nicely animated. Programming Abstractions, Lecture 10 Programming Abstractions, Lecture 11

A tree is a graph where any two vertices only have one path between them. This eliminates the possibility of cycles. When you're searching a graph that isn't a tree, you will probably have some logic to eliminate cycles anyway, so the behavior is the same. Also, if you have a directed graph, you obviously can't follow edges that don't go in the "wrong" direction.

(From what I can tell, in the Stallman paper they developed a logic system that doesn't just give you a yes or a no on a query but actually corrects "wrong" assumptions in bad queries by making the least amount of changes. You can kind of see where the first definition of backtracking might come into play.)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.