Description Usage Arguments Value Examples
using some heuristic or common sense knowledge to generate a sequence of suboptimum that hopefully converges to an optimum value.
1 | greedy_knapsack(x, W)
|
x |
A dataframe with two columns: the values (v) and the weights (w) of each item to put in the knapsack. |
W |
A positive number representing the knapsack size.. |
A list of two elements: a positive number with the maximum knapsack value
and a vector of all the elements
in the knapsack size.
1 | greedy_knapsack(x = knapsack_objects[1:800,], W = 3500)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.