Wednesday, January 11, 2012

0-1 Knapsack Problem

Given weights and values of n items, put these items in a knapsack of capacity W to get the maximum total value in the knapsack. In other words, given two integer arrays val[0..n-1] and wt[0..n-1] which represent values and weights associated with n items respectively. Also given an integer W which represents knapsack capacity, find out the maximum value subset of val[] such that sum of the weights of this subset is smaller than or equal to W. You cannot break an item, either pick the complete item, or don’t pick it (0-1 property)

http://www.geeksforgeeks.org/dynamic-programming-set-10-0-1-knapsack-problem/

Greedy / Fractional Knapsack Problem:
http://www.geeksforgeeks.org/fractional-knapsack-problem/

Branch & Bound Knapsack
http://www.geeksforgeeks.org/branch-and-bound-set-1-introduction-with-01-knapsack/
http://www.geeksforgeeks.org/branch-and-bound-set-2-implementation-of-01-knapsack/

No comments:

Post a Comment