2/12 Flashcards
(5 cards)
1
Q
Exhaustive Search
A
Only realistic in very small instances. Sometimes it’s the only way to be exact.
2
Q
More precision
A
Lower efficiency
3
Q
Decrease & Conquer
A
- Reduce problem instance to smaller version of itself.
- Solve smaller instance.
- Extend solution to obtain solution of original instance.
4
Q
Types of decrease and conquer
A
Decrease by constant i.e. insertion sort
Decrease by constant factor i.e. binary search
Decrease by variable size i.e. euclid or partition
5
Q
A