Haskell 中的函数优先级

问题描述

所以我正在做一些coding problem,为了解决它,我正在尝试创建一个所有可能答案的列表,然后我会在被要求时查看该答案是否存在。但是,我遇到了“o1”、“o2”和“o3”的函数优先级问题——即使它们表示像*、div、+这样的表达式——它们都具有相同的优先级,所以当像4这样的选项时+ 4 + 4 * 4 出现,程序的答案是 48,而不是正确答案,即 24。

我想问的是,有什么方法可以改变函数“o1”、“o2”和“o3”的优先级,或者让它们反映运算符的优先级?

代码:

options :: [Int -> Int -> Int]
options = [(+),(-),div,(*)]
optionsStr = [" + 4"," - 4"," / 4"," * 4"]

createOptions :: Int -> Int -> Int -> (Int,String)
createOptions first second third = (key,value)
    where
        o1 = options !! first
        o2 = options !! second
        o3 = options !! third

        key = 4 `o1` 4 `o2` 4 `o3` 4 -- precedence issue is here
        value = "4" ++ (optionsStr !! first) ++ (optionsStr !! second) ++ (optionsStr !! third)

answerList :: [(Int,String)]
answerList = (concat . concat) $ map f [0..3]
    where 
        f x = map (f' x) [0..3]
        f' x y = map (createOptions x y) [0..3]

解决方法

您可以使用固定声明更改中缀函数的优先级:

infixl 6 `o1`
infixl 6 `o2`
infixl 7 `o3`

the haskell report

相关问答

错误1:Request method ‘DELETE‘ not supported 错误还原:...
错误1:启动docker镜像时报错:Error response from daemon:...
错误1:private field ‘xxx‘ is never assigned 按Alt...
报错如下,通过源不能下载,最后警告pip需升级版本 Requirem...