Combinations or Permutations

S

Seth Leija

I need to know how to generate a list of combinations/permutations
(can't remember which it is). Say I have a list of variables:

[a,b,c,d,...,x,y,z]

I am curious if there is an optimized way to generate this:

[[a,b],[a,c],[a,d],...,[x,z],[y,z]]

I currently have an iteration that does this:

#list.py

from math import *

list1=['a','b','c','d','e']
list2=[]
length=len(list1)

for it1 in range(0 ,length):
for it2 in range(it1+1, length):
list2.append([list1[it1],list1[it2]])

print list2

However, this is one of the slowest parts of my function (beaten only
by variable instantiation). I posted this on another forum looking to
see if there was a different method completely. They said that my
method was about as simple as it could get, but I might be able to
find out how to optimize my code here.

Thanks in advance.
 
M

Mark Lawrence

I need to know how to generate a list of combinations/permutations
(can't remember which it is). Say I have a list of variables:

[a,b,c,d,...,x,y,z]

I am curious if there is an optimized way to generate this:

[[a,b],[a,c],[a,d],...,[x,z],[y,z]]

I currently have an iteration that does this:

#list.py

from math import *

list1=['a','b','c','d','e']
list2=[]
length=len(list1)

for it1 in range(0 ,length):
for it2 in range(it1+1, length):
list2.append([list1[it1],list1[it2]])

print list2

However, this is one of the slowest parts of my function (beaten only
by variable instantiation). I posted this on another forum looking to
see if there was a different method completely. They said that my
method was about as simple as it could get, but I might be able to
find out how to optimize my code here.

Thanks in advance.

Check the docs for the itertools module.

Cheers.

Mark Lawrence.
 
S

Seth Leija

I need to know how to generate a list of combinations/permutations
(can't remember which it is). Say I have a list of variables:
[a,b,c,d,...,x,y,z]

I am curious if there is an optimized way to generate this:
[[a,b],[a,c],[a,d],...,[x,z],[y,z]]

I currently have an iteration that does this:

from math import *
list1=['a','b','c','d','e']
list2=[]
length=len(list1)

for it1 in range(0 ,length):
     for it2 in range(it1+1, length):
         list2.append([list1[it1],list1[it2]])
print list2
However, this is one of the slowest parts of my function (beaten only
by variable instantiation). I posted this on another forum looking to
see if there was a different method completely. They said that my
method was about as simple as it could get, but I might be able to
find out how to optimize my code here.
Thanks in advance.

Check the docs for the itertools module.

Cheers.

Mark Lawrence.

That works! That made my function significantly faster! It's still
slower than I would like it, but this is enough for now. Thank you so
much!
 
D

Dave Angel

I need to know how to generate a list of combinations/permutations
(can't remember which it is). Say I have a list of variables:

[a,b,c,d,...,x,y,z]

I am curious if there is an optimized way to generate this:

[[a,b],[a,c],[a,d],...,[x,z],[y,z]]

I currently have an iteration that does this:

#list.py

from math import *

list1=['a','b','c','d','e']
list2=[]
length=len(list1)

for it1 in range(0 ,length):
for it2 in range(it1+1, length):
list2.append([list1[it1],list1[it2]])

print list2

However, this is one of the slowest parts of my function (beaten only
by variable instantiation). I posted this on another forum looking to
see if there was a different method completely. They said that my
method was about as simple as it could get, but I might be able to
find out how to optimize my code here.

Thanks in advance.
You're apparently looking for combinations. You're asking for all the
combinations of items from the original list, taken two at a time.

Permutations would also include the reverse of each item, so it would be
exactly twice the size.

For the specific case of two, your approach is about as simple as it can
get. However, generalizing the code to handle 'r' at a time is pretty
tricky. There's a library function for it in Python 2.6 and later, as
mentioned by others, and the docs show a sample implementation.

Clearly making a single function call is optimized in one sense.
However, if you're looking for speed, chances are you could improve on
your own function by changing the two loops. (tested in python 2.6)

Consider:

list1=['a','b','c','d','e']
list2=[]

for it1, val1 in enumerate(list1):
for val2 in list1[it1+1:]:
list2.append([val1, val2])

print list2


DaveA
 
R

Raymond Hettinger

I need to know how to generate a list of combinations/permutations
(can't remember which it is). Say I have a list of variables:

[a,b,c,d,...,x,y,z]

I am curious if there is an optimized way to generate this:

[[a,b],[a,c],[a,d],...,[x,z],[y,z]]

Try this:
[('a', 'b'), ('a', 'c'), ('a', 'd'), ('a', 'e'), ('b', 'c'), ('b',
'd'), ('b', 'e'), ('c', 'd'), ('c', 'e'), ('d', 'e')]


Raymond
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,755
Messages
2,569,536
Members
45,013
Latest member
KatriceSwa

Latest Threads

Top