Erlang,列表:查找具有由 fun 定义的最大值的元素
lists
模块提供了一个查找列表最大值的函数,lists:max(List)
。
有没有像lists:maxfun(Fun, List)这样的函数?给定的 fun 应该用于所有元素,并且 maxfun 应该返回该元素而不是值。例如:
Fun gets [X,Y] and calcs X+Y
lists:maxfun(Fun,[[1,1],[1,2]]} -> [1,2].
The lists
module provides a function to find the maximum of a list, lists:max(List)
.
Is there a function like lists:maxfun(Fun, List)
? The given fun should be used for all Elements and maxfun
should give this Element back instead of the value. For example:
Fun gets [X,Y] and calcs X+Y
lists:maxfun(Fun,[[1,1],[1,2]]} -> [1,2].
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
例如,您可以使用以下技巧:
You can use for example this trick:
您可以使用lists:foldl,如下所示:
You could use lists:foldl for it, something like this: