런타임 크기의 값 목록에서 가능한 모든 조합 생성
일반적인 프로그래밍 시나리오에서는 주어진 정수 목록에서 가능한 모든 요소 조합을 생성해야 하는 상황에 직면하게 됩니다. C#에서 이를 달성하려면 다음 단계를 따르세요.
List<int>
을 사용하여 런타임 시 원하는 수의 요소를 수용할 수도 있습니다. 다음은 이 알고리즘을 구현한 샘플 코드입니다.
<code class="language-csharp">using System; using System.Collections.Generic; public class CombinationGenerator { public static void Main(string[] args) { GenerateCombinations(new List<int> { 1, 2, 3 }); } public static void GenerateCombinations(List<int> list) { int count = (int)Math.Pow(2, list.Count); for (int i = 1; i < count; i++) { List<int> combination = new List<int>(); string binary = Convert.ToString(i, 2).PadLeft(list.Count, '0'); for (int j = 0; j < binary.Length; j++) { if (binary[j] == '1') { combination.Add(list[j]); } } Console.WriteLine(string.Join(", ", combination)); } } }</code>
이 알고리즘을 사용하면 크기에 관계없이 목록에 있는 요소의 가능한 모든 조합을 효율적으로 생성할 수 있습니다.
위 내용은 C#의 런타임 크기 목록에서 가능한 모든 조합을 생성하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!