Makes permuations; Based on ActiveState recipe 190465
Project description
Introduction
This package is made from the xpermutations recipe submitted to ActiveState by Ulrich Hoffman.
The documentation provided therein follows and is assumed to be under the Creative Commons Attribution 3.0 license.
Install with pip or easy_install:
sudo pip install xpermutations
Recipe Documentation (Ulrich Hoffman)
Permutations and combinations are often required in algorithms that do a complete search of the solution space. They are typically rather large so it’s best not to compute them entirely but better to lazily generate them. This recipe uses Python 2.2 generators to create appropriate generator objects, that can be use for example as ranges in for loops.
This recipe provides both combinations and permutations and lazily generates them. You can do arbitrary calculations on the permutation/combination items not just print them.
If you require the complete list of permutations, just use the built-in list() operator. Note that the resulting list can be huge.
All x-generators defined here yield sequences with elements from the original sequence. Their difference is in which elements they take:
xpermutations() takes all elements from the sequence, order matters.
xcombinations() takes n distinct elements from the sequence, order matters.
xuniqueCombinations() takes n distinct elements from the sequence, order is irrelevant.
xselections() takes n elements (not necessarily distinct) from the sequence, order matters.
Note that ‘distinct’ means “different elements in the orginal sequence” and not “different value”, i.e.:
>>> list(xuniqueCombinations('aabb', 2)) [['a', 'a'], ['a', 'b'], ['a', 'b'], ['a', 'b'], ['a', 'b'], ['b', 'b']]
Compare the latter to:
>>> all_different = list(set('aabb')) >>> list(xuniqueCombinations(all_different, 2)) [['a', 'b']]
If your sequence has only items with unique values, you won’t notice the difference (no pun intended).
Caveats
Set theoreticians may take issue with the nomenclature.
Home Page & Repository
Home Page: https://pypi.python.org/pypi/xpermutations/
Repository: https://github.com/jcstroud/xpermutations/
Examples
xcombinations()
>>> " ".join("".join(x) for x in xcombinations("1234", 2)) '12 13 14 21 23 24 31 32 34 41 42 43'
xuniqueCombinations()
>>> " ".join("".join(x) for x in xuniqueCombinations("1234", 2)) '12 13 14 23 24 34'
xselections()
>>> " ".join("".join(x) for x in xselections("1234", 2)) '11 12 13 14 21 22 23 24 31 32 33 34 41 42 43 44'
xpermutations()
>>> " ".join("".join(x) for x in xpermutations("123")) '123 132 213 231 312 321'
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file xpermutations-1.0.1.tar.gz
.
File metadata
- Download URL: xpermutations-1.0.1.tar.gz
- Upload date:
- Size: 4.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2af69729f6c3ce4673ab08f7feb1207419ed0cd13a76e44a874da5fb1ad4a8bb |
|
MD5 | 7e2d1f39e3450752a7162513212cca83 |
|
BLAKE2b-256 | 416fbf11c6ec5e5d2126bd24474dc2eddbfd1f4cc738321017f4a6a4d045a5cc |