20 likes | 131 Views
L ECTURE 12 Backtracking Independent Set Knapsack. Algorithm Design and Analysis. CSE 565. Adam Smith. What We Covered. Backtracking algorithms Independent Set Knapsack Solving recurrences of the form F(n )=aF(n-1) + bF(n-2) +…+ f(n ) First step: Assume solution has form c^n
E N D
LECTURE 12 • Backtracking • Independent Set • Knapsack Algorithm Design and Analysis CSE 565 Adam Smith A. Smith; based on slides by E. Demaine, C. Leiserson, S. Raskhodnikova, K. Wayne
What We Covered • Backtracking algorithms • Independent Set • Knapsack • Solving recurrences of the form F(n)=aF(n-1) + bF(n-2) +…+ f(n) • First step: Assume solution has form c^n • Solve for largest possible value for c • Verify guess by induction S. Raskhodnikova; based on slides by E. Demaine, C. Leiserson, A. Smith, K. Wayne