应用程序类型中的类型错误不匹配

发布于 2025-02-08 03:51:16 字数 639 浏览 1 评论 0原文

nextMyStates :: MyState -> [MyState]
nextMyStates(s) =[up(s),down(s),left(s),right(s),collect(s)]
    
isGoal :: MyState -> Bool
isGoal (S (l) (al) d z) = if al == [] then True else False

search :: [MyState] -> MyState
search (s:sz) | isGoal s = s
              | otherwise = search (sz) ++ nextMyStates s

我正在尝试运行此类型错误,但出现此类型错误,

Type error in application
*** Expression     : search sz ++ nextMyStates s
*** Term           : search sz
*** Type           : MyState
*** Does not match : [MyState]

我认为此符号(S:SZ)意味着SZ是一个由头部以外的元素组成的列表

nextMyStates :: MyState -> [MyState]
nextMyStates(s) =[up(s),down(s),left(s),right(s),collect(s)]
    
isGoal :: MyState -> Bool
isGoal (S (l) (al) d z) = if al == [] then True else False

search :: [MyState] -> MyState
search (s:sz) | isGoal s = s
              | otherwise = search (sz) ++ nextMyStates s

I am trying to run this but this type error comes up

Type error in application
*** Expression     : search sz ++ nextMyStates s
*** Term           : search sz
*** Type           : MyState
*** Does not match : [MyState]

I thought this notation (s:sz) meant the sz is a list consisting of the rest of the elements besides the head but it says it is a single element not a list

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文