diff options
| author | dearblue <[email protected]> | 2021-12-12 21:28:03 +0900 |
|---|---|---|
| committer | dearblue <[email protected]> | 2021-12-12 21:28:03 +0900 |
| commit | 586525f99a982502bda6b0540ae5e1f7ac322168 (patch) | |
| tree | d059090fb93efd530c2e6e6eb319888c5e43986a /mrbgems/mruby-array-ext | |
| parent | 7349902d5bfff7aef08d6f069707b12cc07e0071 (diff) | |
| download | mruby-586525f99a982502bda6b0540ae5e1f7ac322168.tar.gz mruby-586525f99a982502bda6b0540ae5e1f7ac322168.zip | |
Add `Array#{repeated_combination,repeated_permutation}` methods
Ruby 1.9.2 feature.
ref: https://docs.ruby-lang.org/ja/3.1.0/method/Array/i/repeated_combination.html
ref: https://docs.ruby-lang.org/ja/3.1.0/method/Array/i/repeated_permutation.html
Diffstat (limited to 'mrbgems/mruby-array-ext')
| -rw-r--r-- | mrbgems/mruby-array-ext/mrblib/array.rb | 73 | ||||
| -rw-r--r-- | mrbgems/mruby-array-ext/test/array.rb | 56 |
2 files changed, 129 insertions, 0 deletions
diff --git a/mrbgems/mruby-array-ext/mrblib/array.rb b/mrbgems/mruby-array-ext/mrblib/array.rb index d04c11e64..1722a3631 100644 --- a/mrbgems/mruby-array-ext/mrblib/array.rb +++ b/mrbgems/mruby-array-ext/mrblib/array.rb @@ -943,4 +943,77 @@ class Array result end + + ## + # call-seq: + # ary.repeated_combination(n) { |combination| ... } -> self + # ary.repeated_combination(n) -> enumerator + # + # A +combination+ method that contains the same elements. + def repeated_combination(n, &block) + raise TypeError, "no implicit conversion into Integer" unless 0 <=> n + return to_enum(:repeated_combination, n) unless block + __repeated_combination(n, false, &block) + end + + ## + # call-seq: + # ary.repeated_permutation(n) { |permutation| ... } -> self + # ary.repeated_permutation(n) -> enumerator + # + # A +permutation+ method that contains the same elements. + def repeated_permutation(n, &block) + raise TypeError, "no implicit conversion into Integer" unless 0 <=> n + return to_enum(:repeated_permutation, n) unless block + __repeated_combination(n, true, &block) + end + + def __repeated_combination(n, permutation, &block) + case n + when 0 + yield [] + when 1 + i = 0 + while i < self.size + yield [self[i]] + i += 1 + end + else + if n > 0 + v = [0] * n + while true + tmp = [nil] * n + i = 0 + while i < n + tmp[i] = self[v[i]] + i += 1 + end + + yield tmp + + tmp = self.size + i = n - 1 + while i >= 0 + v[i] += 1 + break if v[i] < tmp + i -= 1 + end + break unless v[0] < tmp + i = 1 + while i < n + unless v[i] < tmp + if permutation + v[i] = 0 + else + v[i] = v[i - 1] + end + end + i += 1 + end + end + end + end + + self + end end diff --git a/mrbgems/mruby-array-ext/test/array.rb b/mrbgems/mruby-array-ext/test/array.rb index 879980c7e..bd7a2dc45 100644 --- a/mrbgems/mruby-array-ext/test/array.rb +++ b/mrbgems/mruby-array-ext/test/array.rb @@ -18,6 +18,14 @@ def assert_combination(exp, receiver, *args) assert_permutation_combination(exp, receiver, :combination, *args) end +def assert_repeated_permutation(exp, receiver, *args) + assert_permutation_combination(exp, receiver, :repeated_permutation, *args) +end + +def assert_repeated_combination(exp, receiver, *args) + assert_permutation_combination(exp, receiver, :repeated_combination, *args) +end + assert("Array#assoc") do s1 = [ "colors", "red", "blue", "green" ] s2 = [ "letters", "a", "b", "c" ] @@ -443,3 +451,51 @@ assert "Array#product" do assert_equal base, base.product([4, 5, 6], [7, 8, 9]) { |e| x << e } assert_equal expect, x end + +assert("Array#repeated_combination") do + a = [1, 2, 3] + assert_raise(ArgumentError) { a.repeated_combination } + #assert_kind_of(Enumerator, a.repeated_combination(1)) + assert_repeated_combination([[1],[2],[3]], a, 1) + assert_repeated_combination([[1,1],[1,2],[1,3],[2,2],[2,3],[3,3]], a, 2) + assert_repeated_combination([[1,1,1],[1,1,2],[1,1,3],[1,2,2],[1,2,3],[1,3,3],[2,2,2], + [2,2,3],[2,3,3],[3,3,3]], a, 3) + assert_repeated_combination([[1,1,1,1],[1,1,1,2],[1,1,1,3],[1,1,2,2],[1,1,2,3],[1,1,3,3], + [1,2,2,2],[1,2,2,3],[1,2,3,3],[1,3,3,3],[2,2,2,2],[2,2,2,3], + [2,2,3,3],[2,3,3,3],[3,3,3,3]], a, 4) + assert_repeated_combination([[1,1,1,1,1],[1,1,1,1,2],[1,1,1,1,3],[1,1,1,2,2],[1,1,1,2,3], + [1,1,1,3,3],[1,1,2,2,2],[1,1,2,2,3],[1,1,2,3,3],[1,1,3,3,3], + [1,2,2,2,2],[1,2,2,2,3],[1,2,2,3,3],[1,2,3,3,3],[1,3,3,3,3], + [2,2,2,2,2],[2,2,2,2,3],[2,2,2,3,3],[2,2,3,3,3],[2,3,3,3,3], + [3,3,3,3,3]], a, 5) + assert_repeated_combination([[]], a, 0) + assert_repeated_combination([], a, -1) +end + +assert("Array#repeated_permutation") do + a = [1, 2, 3] + assert_raise(ArgumentError) { a.repeated_permutation } + #assert_kind_of(Enumerator, a.repeated_permutation(1)) + assert_repeated_permutation([[1],[2],[3]], a, 1) + assert_repeated_permutation([[1,1],[1,2],[1,3],[2,1],[2,2],[2,3],[3,1],[3,2],[3,3]], a, 2) + assert_repeated_permutation([[1,1,1],[1,1,2],[1,1,3],[1,2,1],[1,2,2],[1,2,3],[1,3,1],[1,3,2],[1,3,3], + [2,1,1],[2,1,2],[2,1,3],[2,2,1],[2,2,2],[2,2,3],[2,3,1],[2,3,2],[2,3,3], + [3,1,1],[3,1,2],[3,1,3],[3,2,1],[3,2,2],[3,2,3],[3,3,1],[3,3,2],[3,3,3]], + a, 3) + assert_repeated_permutation([[1,1,1,1],[1,1,1,2],[1,1,1,3],[1,1,2,1],[1,1,2,2],[1,1,2,3], + [1,1,3,1],[1,1,3,2],[1,1,3,3],[1,2,1,1],[1,2,1,2],[1,2,1,3], + [1,2,2,1],[1,2,2,2],[1,2,2,3],[1,2,3,1],[1,2,3,2],[1,2,3,3], + [1,3,1,1],[1,3,1,2],[1,3,1,3],[1,3,2,1],[1,3,2,2],[1,3,2,3], + [1,3,3,1],[1,3,3,2],[1,3,3,3],[2,1,1,1],[2,1,1,2],[2,1,1,3], + [2,1,2,1],[2,1,2,2],[2,1,2,3],[2,1,3,1],[2,1,3,2],[2,1,3,3], + [2,2,1,1],[2,2,1,2],[2,2,1,3],[2,2,2,1],[2,2,2,2],[2,2,2,3], + [2,2,3,1],[2,2,3,2],[2,2,3,3],[2,3,1,1],[2,3,1,2],[2,3,1,3], + [2,3,2,1],[2,3,2,2],[2,3,2,3],[2,3,3,1],[2,3,3,2],[2,3,3,3], + [3,1,1,1],[3,1,1,2],[3,1,1,3],[3,1,2,1],[3,1,2,2],[3,1,2,3], + [3,1,3,1],[3,1,3,2],[3,1,3,3],[3,2,1,1],[3,2,1,2],[3,2,1,3], + [3,2,2,1],[3,2,2,2],[3,2,2,3],[3,2,3,1],[3,2,3,2],[3,2,3,3], + [3,3,1,1],[3,3,1,2],[3,3,1,3],[3,3,2,1],[3,3,2,2],[3,3,2,3], + [3,3,3,1],[3,3,3,2],[3,3,3,3]], a, 4) + assert_repeated_permutation([[]], a, 0) + assert_repeated_permutation([], a, -1) +end |
