Skip to content

Instantly share code, notes, and snippets.

@mathyourlife
Created May 5, 2015 22:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mathyourlife/482255427d22091d2d7e to your computer and use it in GitHub Desktop.
Save mathyourlife/482255427d22091d2d7e to your computer and use it in GitHub Desktop.
Lexicographic Permutations - implementation of a method without recursion or state memory
/*
Lexicographic Permutations
source: http://en.wikipedia.org/wiki/Permutation#Generation_in_lexicographic_order
The following algorithm generates the next permutation lexicographically
after a given permutation. It changes the given permutation in-place.
1) Find the largest index k such that a[k] < a[k + 1].
If no such index exists, the permutation is the last permutation.
2) Find the largest index l greater than k such that a[k] < a[l].
3) Swap the value of a[k] with that of a[l].
4) Reverse the sequence from a[k + 1] up to and including the
final element a[n].
*/
package main
import (
"fmt"
)
// Lexicographic Permutations
type LexPerm struct{}
/*
Find the largest index k such that a[k] < a[k + 1].
If no such index exists, the permutation is the last permutation.
Return -1 if items are in descending order.
*/
func (lp LexPerm) get_k(a []int) int {
k := -1
for i := 0; i < len(a)-1; i++ {
if a[i] < a[i+1] {
k = i
}
}
return k
}
/*
Find the largest index l greater than k such that a[k] < a[l].
*/
func (lp LexPerm) get_l(a []int, k int) int {
var l int
for i := k + 1; i < len(a); i++ {
if a[k] < a[i] {
l = i
}
}
return l
}
/*
Modify the provided slice in place, and return false if the slice
is already in descending order (no more permutations exist).
*/
func (lp LexPerm) Next(a []int) bool {
k := lp.get_k(a)
if k < 0 {
return false
}
l := lp.get_l(a, k)
// Step 3 swap k and l
a[k], a[l] = a[l], a[k]
// Step 4 revers items for elements > k+1
for i, j := k+1, len(a)-1; i < j; i, j = i+1, j-1 {
a[i], a[j] = a[j], a[i]
}
return true
}
func main() {
a := []int{1, 2, 3, 4}
// LexPerm has no maintained state so items are assumed in ascending
// order upon entry of the permutation generator.
lp := LexPerm{}
for {
fmt.Println(a)
more := lp.Next(a)
if !more {
break
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment