Last active
August 29, 2015 14:03
-
-
Save fsword/328df48c32eff61d8d56 to your computer and use it in GitHub Desktop.
Y Combinator
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env escript | |
main(_Args) -> | |
Y = fun(Generator) -> | |
Gen = fun(X) -> | |
fun(Args) -> | |
(Generator(X(X)))(Args) | |
end | |
end, | |
Gen(Gen) | |
end, | |
Fac = Y(fun(Callback) -> | |
fun(Arg) -> | |
if | |
Arg =< 1 -> 1; | |
true -> Arg * Callback(Arg-1) | |
end | |
end | |
end), | |
Fib = Y(fun(Callback) -> | |
fun(Arg) -> | |
if | |
Arg =< 1 -> 1; | |
true -> Callback(Arg - 1) + Callback(Arg - 2) | |
end | |
end | |
end), | |
io:format("~p~n~p~n", [Fac(5), Fib(5)]). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
def y | |
->(gen){gen[gen]}[ | |
->(x){->(args){yield(x[x])[args]}} | |
] | |
end | |
fac = y do |callback| | |
->(i){i <= 1 ? 1 : callback[i-1] * i} | |
end | |
fib = y do |callback| | |
->(i){i <= 1 ? 1 : callback[i-1] + callback[i-2]} | |
end | |
puts "#{fac[5]}\n#{fib[5]}" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
revision 4变更说明: 使用函数定义ycombinator,借助yield/block机制简化代码