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 は入力リスト内の要素の数を表します。計算を最小限に抑えるために、次のようないくつかの最適化が採用されています。 a[j 1].
以上がKnuth のアルゴリズムはどのようにして順列を効率的に生成できるのでしょうか?の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。