Skip to content

Instantly share code, notes, and snippets.

@TangerineCat
Created July 12, 2014 20:29
Show Gist options
  • Save TangerineCat/ba5067e147e8bb1e6b3d to your computer and use it in GitHub Desktop.
Save TangerineCat/ba5067e147e8bb1e6b3d to your computer and use it in GitHub Desktop.
KnapSack_DP::KnapSack_DP(int capacity, vector<int> pids, catalog* cat)
{
this->capacity = capacity;
this->pids = pids;
this->cat = cat;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment