菜鸟请教个问题。。

licong_hicom 2010-12-13
如何用lists:foldl实现lists:reverse函数。。
licong_hicom 2010-12-13
licong_hicom 写道
如何用lists:foldl实现lists:reverse函数。。

foldl函数实现列表反转
glacjay 2010-12-17
1> lists:foldl(fun (Elem, Acc) -> [Elem|Acc] end, [], [1,2,3]).
[3,2,1]
2> 

Global site tag (gtag.js) - Google Analytics