Created
February 1, 2019 04:59
-
-
Save ashelly/fcb59a063f9c8a940fdbb50a7102c84c to your computer and use it in GitHub Desktop.
Knuth 7.2.1.2: Algorithm L (Lexicographic Permutation Generation) in C.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
static inline void Exchange(int* data, int a, int b) { | |
int temp = data[a]; | |
data[a]=data[b]; | |
data[b]=temp; | |
} | |
//generates all permutations of initially sorted array `a` with `n` elements | |
//returns 0 when no more permutations exist | |
int genPermutation(int a[], int n) | |
{ | |
int l,j; | |
for (j = --n; j > 0 && a[j-1] >= a[j]; --j) { ; } | |
if (j == 0) return 0; | |
for (l = n; a[j-1] >= a[l]; --l) { ; } | |
Exchange(a, j-1, l); | |
while (j < n) { Exchange(a, j++ ,n--); } | |
return 1; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment