When does pruning stop being efficient in a depth-first search? I've been working on an efficient method to solve the N-Queens problem and I'm looking at pruning for the first time. I've implemented it for the first two rows, but when does it stop being efficient? How far should I prune to?

link|improve this question

5  
I think you should describe your algorithm in more detail. I'm not sure what exactly you mean by pruning. It never stops being efficient to reject paths that you know for sure will lead to a dead end. – IVlad Apr 23 '10 at 20:30
feedback

2 Answers

up vote 4 down vote accepted

The N-Queens problem is typically recursive. Implementing pruning at one depth should mean implementing it at any depth.

The answer would depend on what sort of pruning you're doing. If you're pruning for symmetric moves, then it's not worth pruning when the cost of checking is more than the cost of evaluating a whole branch times the probability of the branch being symmetric. For the N-Queens problem, symmetry is probably not a very fruitful pruning method after the first two rows.

link|improve this answer
feedback

I once saw a quote regarding this, "Prune early; prune often." And another, "Don't do anything stupid; don't do anything twice."

I think that the amount of pruning that you do should be determined by your goals for the problem, or your boundaries on N.

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.