Inspired by this question and answer, how do I create a generic permutations algorithm in F#? Google doesn't give any useful answers to this.
EDIT: I provide my best answer below, but I suspect that Tomas's is better (certainly shorter!)
|
feedback
|
|
you can also write something like this:
The 'list' argument contains all the numbers that you want to permute and 'taken' is a set that contains numbers already used. The function returns empty list when all numbers all taken. Otherwise, it iterates over all numbers that are still available, gets all possible permutations of the remaining numbers (recursively using 'permutations') and appends the current number to each of them before returning (l::perm). To run this, you'll give it an empty set, because no numbers are used at the beginning:
| |||||
|
feedback
|
|
I like this implementation (but can't remember the source of it):
| |||||||
feedback
|
|
My latest best answer
The permutations function works by constructing an n-ary tree representing all possible permutations of the list of 'things' passed in, then traversing the tree to construct a list of lists. Using 'Seq' dramatically improves performance as it makes everything lazy. The second parameter of the permutations function allows the caller to define a filter for 'pruning' the tree before generating the paths (see my example below, where I don't want any leading zeros). Some example usage: Node<'a> is generic, so we can do permutations of 'anything':
(Special thanks to Tomas Petricek, any comments welcome) | |||
feedback
|
|
Tomas' solution is quite elegant: it's short, purely functional, and lazy. I think it may even be tail-recursive. Also, it produces permutations lexicographically. However, we can improve performance two-fold using an imperative solution internally while still exposing a functional interface externally. The function The inner function
Now for convenience we have the following where
| |||
|
feedback
|
|
Take a look at this one: | |||
|
feedback
|
|
If you need distinct permuations (when the original set has duplicates), you can use this:
This is a straight-forward translation from this C# code. I am open to suggestions for a more functional look-and-feel. | |||
|
feedback
|