當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


Ruby Array.repeated_permutation用法及代碼示例


本文簡要介紹ruby語言中 Array.repeated_permutation 的用法。

用法

repeated_permutation(n) {|permutation| ... } → self
repeated_permutation(n) → new_enumerator

self 的元素的長度 n 的每個重複排列調用塊;每個排列都是一個數組;返回 self 。排列的順序是不確定的。

當給出一個塊和一個正整數參數 n 時,調用帶有每個 n -tuple 重複排列 self 元素的塊。排列的數量是 self.size**n

n = 1:

a = [0, 1, 2]
a.repeated_permutation(1) {|permutation| p permutation }

輸出:

[0]
[1]
[2]

n = 2:

a.repeated_permutation(2) {|permutation| p permutation }

輸出:

[0, 0]
[0, 1]
[0, 2]
[1, 0]
[1, 1]
[1, 2]
[2, 0]
[2, 1]
[2, 2]

如果n 為零,則使用空數組調用塊一次。

如果n 為負數,則不調用該塊:

a.repeated_permutation(-1) {|permutation| fail 'Cannot happen' }

如果沒有給出塊,則返回一個新的枚舉器:

a = [0, 1, 2]
a.repeated_permutation(2) # => #<Enumerator: [0, 1, 2]:permutation(2)>

使用枚舉器,可以方便地顯示 n 的某些值的排列和計數:

e = a.repeated_permutation(0)
e.size # => 1
e.to_a # => [[]]
e = a.repeated_permutation(1)
e.size # => 3
e.to_a # => [[0], [1], [2]]
e = a.repeated_permutation(2)
e.size # => 9
e.to_a # => [[0, 0], [0, 1], [0, 2], [1, 0], [1, 1], [1, 2], [2, 0], [2, 1], [2, 2]]

相關用法


注:本文由純淨天空篩選整理自ruby-lang.org大神的英文原創作品 Array.repeated_permutation。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。