您好我正在使用此功能来计算A List of Object" 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;
}
感谢您的帮助
答案 0 :(得分:2)
你真的是否需要立即将它们全部保存在内存中,或者是否足以一次一个地获取每个组合以便你可以用它做什么?
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();
}
}