About 4,430 results
Open links in new tab
  1. 0/1 Knapsack Problem - GeeksforGeeks

    Mar 6, 2026 · For each item, there are two choices: either include the item in the knapsack or skip it, depending on whether its weight allows it to fit within the remaining capacity.

  2. Knapsack problem - Wikipedia

    The knapsack problem is the following problem in combinatorial optimization: Given a set of items, each with a weight and a value, determine which items to include in the collection so that the total weight …

  3. DSA The 0/1 Knapsack Problem - W3Schools

    To solve the 0/1 Knapsack Problem you must figure out which treasures to pack to maximize the total value, and at the same time keeping below the backpack's weight limit.

  4. Knapsack Problem - Algorithms for Competitive Programming

    The complete knapsack model is similar to the 0-1 knapsack, the only difference from the 0-1 knapsack is that an item can be selected an unlimited number of times instead of only once.

  5. Knapsack Problem: Algorithms and Techniques

    Jun 10, 2025 · Explore the different algorithms and techniques used to solve the Knapsack Problem, including dynamic programming and greedy algorithms.

  6. Understanding the Knapsack Problem and Solutions

    The Knapsack Problem is a classic optimization problem in computer science and mathematics that has wide-ranging applications in various fields, including economics, cryptography, and resource allocation.

  7. 0/1 Knapsack Problem

    0/1 Knapsack Problem ¶ 1. 0/1 Knapsack Problem ¶ The 0/1 Knapsack problem can be defined in terms of a thief who enters the place they will rob with a single knapsack to carry away their spoils. This …

  8. The Knapsack problem, an essential optimization issue with broad applicability, was the focus of our investigation. A number of studies and research looked at several approaches to solve it using both …

  9. Recent Advances in Knapsack Problem: A Comprehensive Review of …

    Feb 14, 2026 · The knapsack problem is an ancient and classic combinatorial optimization problem. This issue has been studied for over a century, and early works can be traced back to 1975 [9]. In …

  10. Unfortunately, there is no known polynomial-time algorithm for the Knapsack Problem (it is NP-hard). However, if we make a seemingly simple relaxation to one of the problem’s constraints, we obtain a …