Array.permute<'T> 函数 (F#)

返回一个数组,其中包含依据指定排列规则进行排列的所有元素。

命名空间/模块路径: Microsoft.FSharp.Collections.Array

程序集:FSharp.Core(在 FSharp.Core.dll 中)

// Signature:
Array.permute : (int -> int) -> 'T [] -> 'T []

// Usage:
Array.permute indexMap array

参数

  • indexMap
    类型:int -> int

    将输入索引映射到输出索引的函数。

  • array
    类型:'T []

    输入数组。

返回值

排列后的数组。

备注

此函数在编译的程序集中名为 Permute。 如果从 F# 以外的语言中访问功能,或通过反射访问类型,请使用此名称。

示例

下面的代码阐释了 Array.permute 的用法。

let printPermutation n array1 =
    let length = Array.length array1
    if (n > 0 && n < length) then
        Array.permute (fun index -> (index + n) % length) array1
    else
        array1
    |> printfn "%A"
let array1 = [| 1 .. 5 |]
// There are 5 valid permutations of array1, with n from 0 to 4.
for n in 0 .. 4 do
    printPermutation n array1 

Output

  

平台

Windows 8,Windows 7,Windows server 2012中,Windows server 2008 R2

版本信息

F#核心库版本

支持:2.0,4.0,可移植

请参见

参考

Collections.Array 模块 (F#)

Microsoft.FSharp.Collections 命名空间 (F#)