Session 08 Flashcards
1
Q
Different search techniques in B&B ?
A
- LC Search
- BFS
- DFS
2
Q
Characteristics of B&B ?
A
- Optimal Solution
- Upper and Lower bound
- Pruning
- Backtracking
3
Q
Applications of B&B ?
A
- Travelling salesman
- Knapsack
- Resource allocation
- Network optimization
- Game playing
4
Q
Adv and Disadv of B&B ?
A
Adv :
1. Optimal solution
2. Reduces search spaces
3. Proven performance
4. Incremental improvement
DisAdv :
1. Exponential time complexity
2. Need lot of memory
3. Sensitive to problem specific parameters
4. Limited scalability
5
Q
Classifications of B&B ?
A
- FIFO B&B (BFS)
- LIFO B&B (DFS)
- LC (Least Cost) B&B
6
Q
A