列举值列表中的所有组合
在C#中,给定一个动态整数列表,通常需要生成其元素的所有可能组合。例如,对于列表{1, 2, 3},您需要生成以下组合:
<code>{1, 2, 3} {1, 2} {1, 3} {2, 3} {1} {2} {3}</code>
为此,请使用以下算法:
提供的C#代码演示了此算法的实现:
<code class="language-csharp">static void Main(string[] args) { GetCombination(new List<int> { 1, 2, 3 }); } static void GetCombination(List<int> list) { double count = Math.Pow(2, list.Count); for (int i = 1; i < count; i++) { string binary = Convert.ToString(i, 2).PadLeft(list.Count, '0'); List<int> combination = new List<int>(); for (int j = 0; j < binary.Length; j++) { if (binary[j] == '1') { combination.Add(list[j]); } } Console.WriteLine(string.Join(", ", combination)); } }</code>
以上是如何从 C# 中的整数列表生成所有可能的组合?的详细内容。更多信息请关注PHP中文网其他相关文章!