gpt4 book ai didi

c# - 如何在 KnapSack 问题中显示所有包含的数字?

转载 作者:行者123 更新时间:2023-12-03 23:46:47 25 4
gpt4 key购买 nike

我在显示使用过的数字时遇到问题。我正在使用 KnapSack 算法,我想显示我用来获得最高值的所有数字。所以有我的代码:

static int max(int a, int b)
{
int c = (a > b) ? a : b;
Console.WriteLine(c);
return (a > b) ? a : b;
}

// Returns the maximum value that can
// be put in a knapsack of capacity W
int knapSack(int[] r, int[] wt, int n, int W)
{

if (W < 0)
return Int32.MinValue;
if (n < 0 || W == 0)
return 0;
int include = r[n] + knapSack(r, wt, n, W - wt[n]);
int exclude = knapSack(r, wt, n - 1, W);
int V = max(include, exclude);
return V;
}

用:
int[] r = new int[] { 3, 4, 8, 5, 6 };
int[] wt = new int[] { 2, 2, 3, 4, 7 };
int W = 11;
int z = W;
int n1 = r.Length;
stopwatch.Start();
int keik = knapSack(r, wt, n1 - 1, W);
stopwatch.Stop();

答案是 28,但我需要显示其中包含的所有 r 数字。我知道这个数组使用的数字是 8 8 8 和 4,所以我需要以某种方式获取这些数字并显示到控制台。

最佳答案

您可以尝试让函数返回已用项目列表的方法。
您可以根据需要返回项目值本身或值的索引。我使用了这个例子中的值。

这是一个实现:

static int knapSack(int[] r, int[] wt, int n, int W, out List<int> list)
{
if (W < 0) {
list = new List<int>();
return Int32.MinValue;
}
if (n < 0 || W == 0) {
list = new List<int>();
return 0;
}
int include = r[n] + knapSack(r, wt, n, W - wt[n], out List<int> includedList);
int exclude = knapSack(r, wt, n - 1, W, out List<int> excludedList);
if (include > exclude) {
includedList.Add(r[n]);
list = includedList;
return include;
} else {
list = excludedList;
return exclude;
}
}

像这样调用:
int keik = knapSack(r, wt, n1 - 1, W, out List<int> list);
Console.WriteLine(string.Join(",", list));

输出:

4,8,8,8

关于c# - 如何在 KnapSack 问题中显示所有包含的数字?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62224086/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com