input: array of unique integers, sorted
output: all permutations. edit: output order is not important, as long as it's correct :-)
example:
[2, 6, 9]
output:
[ [2, 6, 9], [2, 9, 6], [6, 2, 9], [6, 9, 2], [9, 2, 6], [9, 6, 2] ]
|
input: array of unique integers, sorted output: all permutations. edit: output order is not important, as long as it's correct :-) example:
output:
|
|||||||||||||||
|
|
A few easy ones, in alphabetical order... Haskell
J
Python
|
|||||||||
|
|
Haskell without libraries (63 chars):
|
|||
|
|
|
Haskell without libraries (42 chars)
|
|||||||||
|
|
Python without using libraries:
Usage:
|
|||
|
|
|
Prolog
|
|||
|
|
|
57 characters not evaluating or comparing elements (gives permutations in lexicographical order provided the original list is sorted):
|
||||
|
|
|
Implement permutations in Haskell (
Unlike some other Haskell answers, this one doesn't evaluate the elements of its input list. I've been looking around for some prelude function that makes defining i (for "insert") more concise than the above, but so far I haven't found anything... |
||||
|
|
|
|||
|
|
PerlMaybe not the most efficient nor shortest-code version, but I thought I'd give it a try for practice. Of course
|
||||
|
|
F#I am using this as a way to learn F# so I would greatly appreciate anyone's suggestions on improving the code here, especially on the factorial calculation. Also, I try to avoid recursive functions whenever possible unless they can be made tail recursive, just as a personal challenge.
|
|||||
|
|
C# (not using recursion) Not the shortest, but here's an implemenetation of Edsger Dijkstra's algorithm from the classic text A Discipline of Programming (Prentice-Hall). (I mostly just wanted to see if it could be done without recursion and have a play with generics).
|
|||||
|
|
|
|||||||||
|