我有这个inserts
功能
inserts 1 [2,3] = [[1,2,3],[2,1,3],[2,3,1]]
这是定义(直接来自 Bird 和 Gibbons 的 Haskell 算法设计)
inserts :: a -> [a] -> [[a]]
inserts x [] = [[x]]
inserts x (y:ys) = (x:y:ys) : map (y:) (inserts x ys)
我已经用上面的例子在 ghci 中尝试过了,但是我得到了以下异常
[[1,2,3],[2,1,3]*** Exception: <interactive>:2:1-53: Non-exhaustive patterns in function inserts
有谁知道缺少的模式是什么?