mirror of
https://github.com/krahets/hello-algo.git
synced 2026-02-07 21:04:02 +08:00
* Review the EN heading format. * Fix pythontutor headings. * Fix pythontutor headings. * bug fixes * Fix headings in **/summary.md * Revisit the CN-to-EN translation for Python code using Claude-4.5 * Revisit the CN-to-EN translation for Java code using Claude-4.5 * Revisit the CN-to-EN translation for Cpp code using Claude-4.5. * Fix the dictionary. * Fix cpp code translation for the multipart strings. * Translate Go code to English. * Update workflows to test EN code. * Add EN translation for C. * Add EN translation for CSharp. * Add EN translation for Swift. * Trigger the CI check. * Revert. * Update en/hash_map.md * Add the EN version of Dart code. * Add the EN version of Kotlin code. * Add missing code files. * Add the EN version of JavaScript code. * Add the EN version of TypeScript code. * Fix the workflows. * Add the EN version of Ruby code. * Add the EN version of Rust code. * Update the CI check for the English version code. * Update Python CI check. * Fix cmakelists for en/C code. * Fix Ruby comments
47 lines
1.3 KiB
JavaScript
47 lines
1.3 KiB
JavaScript
/**
|
|
* File: fractional_knapsack.js
|
|
* Created Time: 2023-09-02
|
|
* Author: Justin (xiefahit@gmail.com)
|
|
*/
|
|
|
|
/* Item */
|
|
class Item {
|
|
constructor(w, v) {
|
|
this.w = w; // Item weight
|
|
this.v = v; // Item value
|
|
}
|
|
}
|
|
|
|
/* Fractional knapsack: Greedy algorithm */
|
|
function fractionalKnapsack(wgt, val, cap) {
|
|
// Create item list with two attributes: weight, value
|
|
const items = wgt.map((w, i) => new Item(w, val[i]));
|
|
// Sort by unit value item.v / item.w from high to low
|
|
items.sort((a, b) => b.v / b.w - a.v / a.w);
|
|
// Loop for greedy selection
|
|
let res = 0;
|
|
for (const item of items) {
|
|
if (item.w <= cap) {
|
|
// If remaining capacity is sufficient, put the entire current item into the knapsack
|
|
res += item.v;
|
|
cap -= item.w;
|
|
} else {
|
|
// If remaining capacity is insufficient, put part of the current item into the knapsack
|
|
res += (item.v / item.w) * cap;
|
|
// No remaining capacity, so break out of the loop
|
|
break;
|
|
}
|
|
}
|
|
return res;
|
|
}
|
|
|
|
/* Driver Code */
|
|
const wgt = [10, 20, 30, 40, 50];
|
|
const val = [50, 120, 150, 210, 240];
|
|
const cap = 50;
|
|
const n = wgt.length;
|
|
|
|
// Greedy algorithm
|
|
const res = fractionalKnapsack(wgt, val, cap);
|
|
console.log(`Maximum item value not exceeding knapsack capacity is ${res}`);
|