I want to systematically generate permutations of the alphabet. I cannot don't want to use python itertools.permutation, because pregenerating a list of every permutation causes my computer to crash (first time i actually got it to force a shutdown, it was pretty great).
Therefore, my new approach is to generate and test each key on the fly. Currently, I am trying to handle this with recursion.
My idea is to start with the largest list (i'll use a 3 element list as an example), recurse in to smaller list until the list is two elements long. Then, it will print the list, swap the last two, print the list again, and return up one level and repeat.
For example, for 123
123 (swap position 0 with position 0)
23 --> 123 (swap position 1 with position 1) 32 --> 132 (swap position 1 with position 2)213 (swap position 0 with position 1)
13 --> 213 (swap position 1 with position 1) 31 --> 231 (swap position 1 with position 2)321 (swap position 0 with position 2)
21 --> 321 (swap position 1 with position 1) 12 --> 312 (swap position 1 with position 2)
for a four letter number (1234)
1234 (swap position 0 with position 0)
234 (swap position 1 with position 1) 34 --> 1234 43 --> 1243 324 (swap position 1 with position 2) 24 --> 1324 42 --> 1342 432 (swap position 1 with position 3) 32 --> 1432 23 --> 14232134 (swap position 0 for position 1) 134 (swap position 1 with position 1) 34 --> 2134 43 --> 2143 314 (swap position 1 with position 2) 14--> 2314 41--> 2341 431 (swap position 1 with position 3) 31--> 2431 13 -->2413
This is the code i currently have for the recursion, but its causing me a lot of grief, recursion not being my strong suit. Here's what i have.
def perm(x, y, key):
print "Perm called: X=",x,", Y=",y,", key=",key
while (x<y):
print "\tLooping Inward"
print "\t", x," ",y," ", key
x=x+1
key=perm(x, y, key)
swap(x,y,key)
print "\tAfter 'swap':",x," ",y," ", key, "\n"
print "\nFull Depth Reached"
#print key, " SWAPPED:? ",swap(x,y,key)
print swap(x, y, key)
print " X=",x,", Y=",y,", key=",key
return key
def swap(x, y, key):
v=key[x]
key[x]=key[y]
key[y]=v
return key
Any help would be greatly appreciated, this is a really cool project and I don't want to abandon it.
Thanks to all! Comments on my method or anything are welcome.
itertools.permutationsdoes not pregenerate all the permutations, and as far as I can tell is exactly what you need. Perhaps you tried to do something like print all its results, or stick them in a list, which caused it to have to generate them all to satisfy the request? – dfan Apr 9 '11 at 1:05