Can someone please explain a good algorithm to find the permutations of a given set of numbers?
Thank you!
|
2
|
Can someone please explain a good algorithm to find the permutations of a given set of numbers? Thank you!
|
|||
|
|
|
|
The simplest approaches are the recursive ones, i.e., in executable pseudocode;
in case you're not familiar with executable pseudocode, the notations There are somewhat better approaches along different axes of performance, but the first milestone is making sure you're totally familiar with the fundamental recursive approach and understand it thoroughly -- so I'm stopping here for now. If and when you do fully understand this approach, why it woks just fine and dandy, and how and why it doesn't really seem optimal in performance, I'll be happy to expand on this answer!-) |
|||
|
|
|
|
Have you looked at Knuth 'The Art of Computer Programming'? Volume 3, Sorting and Searching covers it, which makes sense since a sort creates a particular permutation of the data. Be wary of combinatorial (and permutational) algorithms that find all combinations or permutations. They have very expensive Big-O notation costs. |
||
|
|