我注意到Haskell和Erlang在foldl
方面存在差异。
对于foldr
,两种语言都返回相同的结果:
foldr (\x y -> 2*x+y) 4 [1, 2, 3] -- returns 49
lists:foldr(fun(X, Y) −> X+2∗Y end, 4, [1,2,3]). % returns 49
但foldl
的返回值不同:
foldl (\x y -> x+2*y) 4 [1, 2, 3] -- returns 16
lists:foldl(fun(X, Y) −> X+2∗Y end, 4, [1,2,3]). -- returns 43
如何解释这种差异?
答案 0 :(得分:12)
由于没有简化折叠功能,你会让自己感到困惑。
向左折叠,Haskell :
Prelude Debug.Trace> foldl (\x y -> trace("x:"++show x++" y:"++show y) $ x+y) 4 [1,2,3]
x:4 y:1
x:5 y:2
x:7 y:3
10
向左折叠,Erlang :
1> lists:foldl(fun (X,Y) -> io:format("x:~p y:~p~n", [X,Y]), X+Y end, 4, [1,2,3]).
x:1 y:4
x:2 y:5
x:3 y:7
10
向右折叠,Haskell :
Prelude Debug.Trace> foldr (\x y -> trace("x:"++show x++" y:"++show y) $ x+y) 4 [1,2,3]
x:3 y:4
x:2 y:7
x:1 y:9
10
向右折叠,Erlang :
2> lists:foldr(fun (X,Y) -> io:format("x:~p y:~p~n", [X,Y]), X+Y end, 4, [1,2,3]).
x:3 y:4
x:2 y:7
x:1 y:9
10
由此可见,在Haskell中,foldl
函数将被传递(Accumulator, Element)
,而foldr
函数将被传递(Element, Accumulator)
。另一方面,Erlang中的两个函数都将被传递(Element, Accumulator)
。