使用 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中文网其他相关文章!