Knuth 알고리즘을 이용한 빠른 순열 생성
순열 생성을 최적화하는 것은 컴퓨터 과학의 근본적인 문제입니다. 이는 모든 순열을 열거하는 데 필요한 시간이 상당히 길어질 수 있는 대규모 데이터 세트를 처리할 때 특히 중요합니다. 다음 코드 조각은 Knuth 알고리즘으로 알려진 순열 생성을 위한 효율적인 알고리즘을 제시합니다.
private static bool NextPermutation(int[] numList) { // Find the largest index j such that a[j] < a[j + 1]. int largestIndex = -1; for (int i = numList.Length - 2; i >= 0; i--) { if (numList[i] < numList[i + 1]) { largestIndex = i; break; } } // If no such index exists, the permutation is the last permutation. if (largestIndex < 0) return false; // Find the largest index l such that a[j] < a[l]. int largestIndex2 = -1; for (int i = numList.Length - 1 ; i >= 0; i--) { if (numList[largestIndex] < numList[i]) { largestIndex2 = i; break; } } // Swap a[j] with a[l]. int tmp = numList[largestIndex]; numList[largestIndex] = numList[largestIndex2]; numList[largestIndex2] = tmp; // Reverse the sequence from a[j + 1] up to and including the final element a[n]. for (int i = largestIndex + 1, j = numList.Length - 1; i < j; i++, j--) { tmp = numList[i]; numList[i] = numList[j]; numList[j] = tmp; } return true; }
이 알고리즘은 O(n^2) 시간에 작동합니다. 여기서 n은 입력 목록의 요소 수를 나타냅니다. 계산을 최소화하기 위해 다음을 포함한 여러 가지 최적화를 사용합니다.
이러한 최적화는 세트에서 다음 순열의 효율적인 생성을 보장하므로 이 알고리즘은 빠른 순열이 필요한 애플리케이션에 매우 적합합니다. 세대.
위 내용은 Knuth의 알고리즘은 어떻게 순열을 효율적으로 생성할 수 있습니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!