如果我有一个二维数组,例如
test = array2D [|[|1; 2; 3|];
[|4; 5; 6|];]
我想通过索引交换两个元素,例如
swap test (0,0) (1,1) //[|[|5; 2; 3|];
//[|4; 1; 6|];]
我该怎么写?我已经看到通过引用传递每个项目并对其进行变异的解决方案,但这对我来说似乎是单调的(我可能是错的)。
最佳答案
您可以使用不改变原始数组的 Array2D.mapi 编写交换函数。这将返回一个具有交换值的新数组:
let swap (arr : int[,]) i1 i2 =
let map i j v =
match (i,j) with
| t when t = i1 -> arr.[fst i2, snd i2]
| u when u = i2 -> arr.[fst i1, snd i1]
| _ -> v
arr |> Array2D.mapi map
关于arrays - f# 交换 Array2D 中的元素,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23525842/