Knapsack with Priority Queue
Background
The objective of this project was to write a user-defined R function that solves the celebrated “Knapsack Problem” for a general number of items using a priority queue.
This project was for one of my undergraduate courses.
Method
Inputs:
a vector, COST, which represents the costs of the items you want to include in the knapsack
a vector, BENEFIT, which represents the benefits of the items you want to include in the knapsack
a value, CAP, which represents the capacity of the knapsack
Outputs:
a vector, Best.Vector, which is the binary vector that contains a 1 in the jth position if the jth item is packed and a 0 in the jth position if it is not packed
a value, Best.Benefit, which represents the profit of Best.Vector
a value, Best.Cost, which represents the cost of Best.Vector