knapsack_dynamic: Title Dynamic Program Knapsack

Description Usage Arguments Source Examples

Description

Title Dynamic Program Knapsack

Usage

1

Arguments

x

The input to function containing the number of items

W

The weights of the items

Source

http://www.es.ele.tue.nl/education/5MC10/Solutions/knapsack.pdf

Examples

1
2
3
4
set.seed(42)
n <- 2000
knapsack_objects <- data.frame(w=sample(1:4000, size = n, replace = TRUE), v=runif(n = n, 0, 10000))
knapsack_dynamic(x = knapsack_objects[1:8,], W = 3500)

anubhav-dikshit/rLab6 documentation built on May 24, 2019, 7:33 a.m.