繁体   English   中英

Haskell置换功能无法编译

[英]Haskell permutation function does not compile

我正在刷一些Haskell,并且尝试编写一个置换函数,该函数将映射[1,2,3]-> [[1,2,3],[1,3,2],[2,1 ,3],[2,3,1],[3,1,2],[3,2,1]。 我有以下内容-

permute:: [a] -> [[a]]
permute [] = []
permute list = map f list
        where
                f x = listProduct x (permute (exclude x list))
                exclude e list1 = filter (/= e) list1
                listProduct x list2 = map (x :) list2

以下是我收到的错误消息-

permutations.hs:3:20:
    Couldn't match type `a' with `[a]'
      `a' is a rigid type variable bound by
          the type signature for permute :: [a] -> [[a]]
          at permutations.hs:1:11
    Expected type: a -> [a]
      Actual type: a -> [[a]]
    In the first argument of `map', namely `f'
    In the expression: map f list
    In an equation for `permute':
        permute list
          = map f list
          where
              f x = listProduct x (permute (exclude x list))
              exclude e list1 = filter (/= e) list1
              listProduct x list2 = map (x :) list2
Failed, modules loaded: none.

我会尝试调试,但它甚至无法编译。 有任何想法吗?

让我们仅关注涉及的列表类型:

permute (exclude x list)

由于permute的类型签名而为[[a]]类型,因此

listProduct x (permute (exclude x list))

def的类型也为[[a]] 产品listProduct

listProduct x list2 = map (x :) list2

加起来,

 f x = listProduct x (permute (exclude x list))

返回[[a]] ,但是

permute list = map f list

f应用于[a]所有元素,返回[[[a]]] ,这不是permute的正确返回类型。

怎么修

  1. 通过串联所有列表,将[[[a]]]转换为[[a]]
  2. 添加一个Eq a约束,因为您在exclude使用/= x
  3. 当前的基本情况是,空列表没有排列,这是错误的。 []有一个排列。 (的确是0!= 1,而不是0)

对于可能感兴趣的任何人-为了解决此问题,我需要一种方法来模拟命令式编程的迭代,因此,建议使用一个循环列表(本质上,我一直在尝试模拟我用javascript写过的解决方案,而该解决方案涉及相同的过程,描述,唯一的例外是我利用了for循环)。

permute [] = [[]]
permute list = [h:tail | h <- list, tail <- (permute (exclude h list))]
  where
    exclude x = filter (/= x)

不一定是最有效的解决方案,因为excludeO(n)运算,但是很简洁,并且可以很好地用作概念证明。

做到这一点的“正确”方法是将挑选和排除列表项组合为一个纯位置操作select :: [a] -> [(a,[a])]

import Control.Arrow (second)
-- second f (a, b) = (a, f b)

select [] = []
select (x:xs) = (x,xs) : map (second (x:)) (select xs)

permute [] = [[]]    -- 1 permutation of an empty list
permute xs = [x : t | (x,rest) <- select xs, t <- permute rest] 

要“调试”-开发您的程序,您可以将每个内部函数自己定义为全局函数 ,并查看各部分是否组合在一起:

> let exclude e list1 = filter (/= e) list1
> let listProduct x list2 = map (x :) list2
> let f x = listProduct x (permute (exclude x list)) 
<interactive>:1:25: Not in scope: `permute' -- permute is not defined yet!!
<interactive>:1:44: Not in scope: `list'    -- need to pass 'list' in
> let f list x = listProduct x (undefined (exclude x list))
                                ---------   -- use a stand-in for now
> let permute [] = [] ; permute list = map (f list) list
> :t permute                           ---
permute :: (Eq t) => [t] -> [[[t]]]    -- one too many levels of list!

因此它们确实融合在一起,只是结果不是我们想要的。 无需更改f生成方式(如编译器建议的那样),我们可以更改其结果的组合方式。 concat删除一级列表嵌套(这是[]类型构造函数的单子join ):

> let permute [] = [] ; permute list = concatMap (f list) list
> :t permute                           ---------
permute :: (Eq t) => [t] -> [[t]]      -- much better

顺便说一句,如果您不自行指定类型签名,它将编译并向您报告[a] -> [[[a]]]类型。

更重要的是,通过将/=放入图片中,您不需要对列表中的项目使用Eq a约束: permute :: (Eq a) => [a] -> [[a]]

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM