Giter Site home page Giter Site logo

Comments (4)

trekhleb avatar trekhleb commented on April 29, 2024 1

Thank you for the fix @shsina . It is now in master branch.

from javascript-algorithms.

sshbio avatar sshbio commented on April 29, 2024

the Unbounded knapsack problem ignores the total number of itemsInStock

const possibleKnapsackItems = [
  new KnapsackItem({ value: 1, weight: 1, itemsInStock: 10 }),
  new KnapsackItem({ value: 100, weight: 100, itemsInStock: 100 }),
  new KnapsackItem({ value: 50, weight: 50, itemsInStock: 2 }),
  new KnapsackItem({ value: 1000, weight: 1000, itemsInStock: 5 }),
];
const maxKnapsackWeight = 76;

const knapsack = new Knapsack(possibleKnapsackItems, maxKnapsackWeight);

knapsack.solveUnboundedKnapsackProblem();

console.log(knapsack.totalValue);
console.log(knapsack.totalWeight);
console.log(knapsack.selectedItems.length);
console.log(knapsack.selectedItems[0]);
console.log(knapsack.selectedItems[1]);
76
76
2
KnapsackItem { value: 1, weight: 1, itemsInStock: 10, quantity: 26 } 
KnapsackItem { value: 50, weight: 50, itemsInStock: 2, quantity: 1 } 

from javascript-algorithms.

sshbio avatar sshbio commented on April 29, 2024

will fix as below , I will make e pr:

solveUnboundedKnapsackProblem() {
    this.sortPossibleItemsByValue();
    this.sortPossibleItemsByValuePerWeightRatio();

    for (let itemIndex = 0; itemIndex < this.possibleItems.length; itemIndex += 1) {
      if (this.totalWeight < this.weightLimit) {
        const currentItem = this.possibleItems[itemIndex];

        // Detect how much of current items we can push to knapsack.
        // if(currentItem.quantity == currentItem.itemsInStock) return;
        const availableWeight = this.weightLimit - this.totalWeight;
        const maxPossibleItemsCount = Math.floor(availableWeight / currentItem.weight);

        if (maxPossibleItemsCount) {
          if(maxPossibleItemsCount <= currentItem.itemsInStock){
            currentItem.quantity = maxPossibleItemsCount;
          }else{
            currentItem.quantity = currentItem.itemsInStock;
          }
          this.selectedItems.push(currentItem);
        }
      }
    }
  }

from javascript-algorithms.

trekhleb avatar trekhleb commented on April 29, 2024

Nice catch @shsina. Waiting for PR.

from javascript-algorithms.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.