mirror of
https://github.com/krahets/hello-algo.git
synced 2026-07-23 03:46:05 +00:00
2778a6f9c7
* 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
42 lines
1.1 KiB
Go
42 lines
1.1 KiB
Go
// File: fractional_knapsack.go
|
|
// Created Time: 2023-07-23
|
|
// Author: Reanon (793584285@qq.com)
|
|
|
|
package chapter_greedy
|
|
|
|
import "sort"
|
|
|
|
/* Item */
|
|
type Item struct {
|
|
w int // Item weight
|
|
v int // Item value
|
|
}
|
|
|
|
/* Fractional knapsack: Greedy algorithm */
|
|
func fractionalKnapsack(wgt []int, val []int, cap int) float64 {
|
|
// Create item list with two attributes: weight, value
|
|
items := make([]Item, len(wgt))
|
|
for i := 0; i < len(wgt); i++ {
|
|
items[i] = Item{wgt[i], val[i]}
|
|
}
|
|
// Sort by unit value item.v / item.w from high to low
|
|
sort.Slice(items, func(i, j int) bool {
|
|
return float64(items[i].v)/float64(items[i].w) > float64(items[j].v)/float64(items[j].w)
|
|
})
|
|
// Loop for greedy selection
|
|
res := 0.0
|
|
for _, item := range items {
|
|
if item.w <= cap {
|
|
// If remaining capacity is sufficient, put the entire current item into the knapsack
|
|
res += float64(item.v)
|
|
cap -= item.w
|
|
} else {
|
|
// If remaining capacity is insufficient, put part of the current item into the knapsack
|
|
res += float64(item.v) / float64(item.w) * float64(cap)
|
|
// No remaining capacity, so break out of the loop
|
|
break
|
|
}
|
|
}
|
|
return res
|
|
}
|