14

Python 的itertools模块提供了很多关于使用生成器处理可迭代/迭代器的好东西。例如,

permutations(range(3)) --> 012 021 102 120 201 210

combinations('ABCD', 2) --> AB AC AD BC BD CD

[list(g) for k, g in groupby('AAAABBBCCD')] --> AAAA BBB CC D

Ruby 中的等价物是什么?

等效,我的意思是快速和高效的内存(Python 的 itertools 模块是用 C 编写的)。

4

1 回答 1

20

Array#permutation,Array#combination并且Enumerable#group_by从 1.8.7 开始在 ruby​​ 中定义。如果您使用的是 1.8.6,则可以从 facets 或 active_support 或backports获得等效的方法。

示例用法:

[0,1,2].permutation.to_a
#=> [[0, 1, 2], [0, 2, 1], [1, 0, 2], [1, 2, 0], [2, 0, 1], [2, 1, 0]]

[0,1,2,3].combination(2).to_a
#=> [[0, 1], [0, 2], [0, 3], [1, 2], [1, 3], [2, 3]]

[0,0,0,1,1,2].group_by {|x| x}.map {|k,v| v}
#=> [[0, 0, 0], [1, 1], [2]]

[0,1,2,3].group_by {|x| x%2}
#=> {0=>[0, 2], 1=>[1, 3]}
于 2010-03-14T18:43:43.197 回答