【发布时间】:2011-08-29 15:39:22
【问题描述】:
我是一名初学者,在进入大学学习计算机科学之前,我正在尝试做一些有关 Haskell 的教程。
我被这个程序卡住了。它需要三个数字并将它们按升序排列。谁能帮助我并告诉我出了什么问题,因为这让我发疯了?感谢您的宝贵时间。
import Prelude hiding (min,max)
orderTriple :: (Int -> Int -> Int) -> (Int -> Int -> Int)
max :: Int -> Int -> Int -> Int
min :: Int -> Int -> Int -> Int
middle :: Int -> Int -> Int -> Int
max x y z
|(x>=y) && (x>=z) = x
|(y>=x) && (y>=z) = y
|otherwise = z
min d e f
|(d<=e) && (d<=f) = d
|(e<=d) && (e<=f) = e
|otherwise = f
middle g h i
| (g <= (max g h i)) && (g >= (min g h i)) = g
| (h <= (max g h i)) && (h >= (min g h i)) = h
| otherwise = i
orderTriple (a,b,c) = ((min a b c),(middle a b c),(max a b c))
错误是:
orderList.hs:23:13:
Couldn't match expected type `[Int -> Int -> Int]'
with actual type `(t0, t1, t2)'
In the pattern: (a, b, c)
In an equation for `orderTriple':
orderTriple (a, b, c) = [(min a b c), (middle a b c), (max a b c)]
【问题讨论】:
-
你真的会在大学里做 Haskell(或某种 FP)吗?我希望我能在我的程序中得到它!