#!/usr/bin/env ruby
# PERMUTATIONS COMPUTER
# based on Bogomolyn algorithm
# http://www.51sjk.com/Upload/Articles/1/0/321/321386_20220812162429453.html
# Author: Alessio Saltarin http://axsaxs.altervista.org/
class PermutationComputer
attr_reader :bigbox # Array of permutations
attr_reader :count # Number of elements found
def initialize(size)
@permutationSize = size
@bigbox = Array.new
@level = -1
@count = 1
@numbers = Array.new(@permutationSize)
(@permutationSize-1).downto(0) { |j| @numbers[j] = 0}
end
def compute()
visit(@numbers, 0)
@count -= 1
end
def visit(numberArray, k)
@level += 1
numberArray[k] = @level
if (@level == @permutationSize)
@bigbox << numberArray.dup # we pass the value, not the reference!
@count += 1
else
0.upto(@permutationSize - 1) do |i|
if (numberArray[i] == 0)
visit(numberArray, i)
end
end
end
@level -= 1
numberArray[k] = 0
end
end
puts "Bogolomyn Permutations Computer v.1.0"
# Permutations of numbers between 1 and 4
permutations = PermutationComputer.new(4)
puts "== START COMPUTING PERMUTATIONS =="
permutations.compute
puts "== #{permutations.count} elements found:"
permutations.bigbox.each do
|line| puts line.inspect
end
puts "== END =="
用户登录
还没有账号?立即注册
用户注册
投稿取消
| 文章分类: |
|
还能输入300字
上传中....
段子青年