Session 07 Flashcards
1
Q
A
2
Q
Brute Force Algorithm ?
A
SImple, comprehensive search strategy that systematically explore every option until a problem’s anser is discovered.
3
Q
Pros of Brute Force Algo ?
A
- Guaranteed solution
- Simple to implement and understand
- Generic approach, applicable to various domain
- Useful as a benchmark for comparison
4
Q
Cons of Brute Force Algo ?
A
- Inefficient for large problems
- Complexity
- Required significant computational power
- Slow execution time
- Lacks creativity
5
Q
Brute force algo types ?
A
- Optimizing approach : Finds the best solution
- Satisficing approach : Stops when a satisfactory solution is found.
6
Q
A