gpt4 book ai didi

c# System.OutOfMemoryException 我该如何解决?

转载 作者:太空宇宙 更新时间:2023-11-03 22:58:58 26 4
gpt4 key购买 nike

您好,我正在使用此函数来计算对象“Ricerca”列表的所有可能组合,当我尝试计算超过 24 个元素的组合时,我得到了 System.OutOfMemory 异常。有什么办法可以解决这个问题吗?

这是我使用的函数:

 private static List<List<Ricerca>> GetAllCombos(List<Ricerca> list)
{
int comboCount = (int)Math.Pow(2, list.Count) - 1;
List<List<Ricerca>> result = new List<List<Ricerca>>();
for (int i = 1; i < comboCount + 1; i++)
{
// make each combo here
result.Add(new List<Ricerca>());
for (int j = 0; j < list.Count; j++)
{
if ((i >> j) % 2 != 0)
result.Last().Add(list[j]);
}
}
return result;
}

谢谢你的帮助

最佳答案

真的需要一次将它们全部保存在内存中,还是一次获取每个组合就足够了,这样您就可以用它做点什么?

    private static IEnumerable<List<Ricerca>> GetAllCombos(IReadOnlyCollection<Ricerca> list)
{
var comboCount = (int)Math.Pow(2, list.Count) - 1;
for (var i = 1; i < comboCount + 1; i++)
{
// make each combo here
yield return list.Where((t, j) => (i >> j) % 2 != 0).ToList();
}
}

关于c# System.OutOfMemoryException 我该如何解决?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44029725/

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