Module-5
1. What are the limitations of algorithmic power.
2. decision tree in algorithm analysis?
3. Define class P , NP and NP-Complete problem? with an example.
4. Explain State , State space , State space tree
5. backtracking technique. two applications of backtracking.
6. N-Queens problem?
7. Subset Sum problem.
8. Describe Branch and Bound technique?
9. Define approximation algorithm. What is approximation ratio?
10. Analyze the decision tree model for selection sort: construct its decision tree and
prove it has at least n! leaves; hence deduce the n log n lower bound on comparisons
11. Subset Sum problem.
set , S={3,5,6,7}
target sum , M=12
12. Set, S={4,5,7} target sum, M=9
13. Solve the 0/1 Knapsack problem using the Branch and Bound method for the
following data:
Weights = {2, 3, 4, 5}
Profits = {3, 4, 5, 6}
Capacity = 5
14. Analyze the greedy approximation algorithm to solve the Knapsack problem with the
following data and compute the approximation ratio.
Weights = {10, 20, 30}
Profits = {60, 100, 120}
Capacity = 50
15.