1

我正在尝试实现先验算法,并且在编写生成候选项目集的方法时遇到了麻烦。这是此功能的屏幕截图。 在此处输入图像描述

主要问题是第 2-5 行。我不知道如何获得 f1 和 f2。f1 和 f2 是最后一项不同的数组,f1 的最后一项小于 f2 的最后一项。

有人知道如何用 Ruby 编写这个吗?

4

1 回答 1

0
f1 = [1,2,3]
f2 = [1,2,4]
z = [f1,f2].transpose

if(((z[0...(z.size-1)].collect {|el| el[0] == el[1]}.uniq == [true])) & (z[z.size-1][0] < z[z.size-1][1])) do

# f1 = f2 , except the last element, where the last f1 element is smaller than the last f2 element

end
于 2013-06-25T13:05:18.813 回答