gpt4 book ai didi

functional-programming - 如何在Elixir中重写Erlang组合算法?

转载 作者:行者123 更新时间:2023-12-04 03:26:50 27 4
gpt4 key购买 nike

在过去的几周里,我一直在修补Elixir。我刚刚遇到了这个简洁的combinations algorithm in Erlang,我尝试用Elixir重写,但被卡住了。

Erlang版本:

comb(0,_) ->
[[]];
comb(_,[]) ->
[];
comb(N,[H|T]) ->
[[H|L] || L <- comb(N-1,T)]++comb(N,T).

我想出了Elixir版本,但这是不正确的:
def combination(0, _), do: [[]]
def combination(_, []), do: []
def combination(n, [x|xs]) do
for y <- combination(n - 1, xs), do: [x|y] ++ combination(n, xs)
end

用法示例,结果不正确:
iex> combination(2, [1,2,3])
[[1, 2, [3], [2, 3]]]

关于我在做什么错的任何指示?

谢谢!
肖恩

最佳答案

您需要将for表达式包装在类似于Erlang代码的括号中。

def combination(n, [x|xs]) do
(for y <- combination(n - 1, xs), do: [x|y]) ++ combination(n, xs)
end

演示:
iex(1)> defmodule Foo do
...(1)> def combination(0, _), do: [[]]
...(1)> def combination(_, []), do: []
...(1)> def combination(n, [x|xs]) do
...(1)> (for y <- combination(n - 1, xs), do: [x|y]) ++ combination(n, xs)
...(1)> end
...(1)> end
{:module, Foo,
<<70, 79, 82, 49, 0, 0, 6, 100, 66, 69, 65, 77, 69, 120, 68, 99, 0, 0, 0, 137, 131, 104, 2, 100, 0, 14, 101, 108, 105, 120, 105, 114, 95, 100, 111, 99, 115, 95, 118, 49, 108, 0, 0, 0, 2, 104, 2, ...>>,
{:combination, 2}}
iex(2)> Foo.combination 2, [1, 2, 3]
[[1, 2], [1, 3], [2, 3]]

关于functional-programming - 如何在Elixir中重写Erlang组合算法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30585697/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com