Python 中的 lambda 函数可以递归调用自身吗?
常规函数可以在其定义中包含对自身的调用,没有问题。 我不知道如何使用 lambda 函数来做到这一点,但原因很简单,lambda 函数没有可引用的名称。 有办法做到吗? 如何?
A regular function can contain a call to itself in its definition, no problem. I can't figure out how to do it with a lambda function though for the simple reason that the lambda function has no name to refer back to. Is there a way to do it? How?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(17)
我能想到的唯一方法就是给函数命名:
或者,对于早期版本的Python:
更新:使用其他答案的想法,我能够楔入将阶乘函数转换为单个未命名的 lambda:
所以这是可能的,但并不真正推荐!
The only way I can think of to do this amounts to giving the function a name:
or alternately, for earlier versions of python:
Update: using the ideas from the other answers, I was able to wedge the factorial function into a single unnamed lambda:
So it's possible, but not really recommended!
没有reduce、map、命名lambdas或python内部:
without reduce, map, named lambdas or python internals:
与所说相反,你可以直接这样做。
第一部分是定点组合器 Y,它促进 lambda 中的递归微积分
第二部分是递归定义的阶乘函数fact,
Y应用于fact以形成另一个
应用于第三部分的lambda表达式, n,计算出第 n 个阶乘
或等效值。
但是,如果您更喜欢 fibs 而不是 facts,您也可以使用相同的组合器来做到这一点
Contrary to what sth said, you CAN directly do this.
The first part is the fixed-point combinator Y that facilitates recursion in lambda calculus
the second part is the factorial function fact defined recursively
Y is applied to fact to form another lambda expression
which is applied to the third part, n, which evaulates to the nth factorial
or equivalently
If however you prefer fibs to facts you can do that too using the same combinator
你不能直接这样做,因为它没有名字。 但是,使用像 Y 组合器 Lemmy 指出的辅助函数,您可以通过将该函数作为参数传递给自身来创建递归(听起来很奇怪):
这将打印前十个斐波那契数:
[1, 1 , 2, 3, 5, 8, 13, 21, 34, 55]
,You can't directly do it, because it has no name. But with a helper function like the Y-combinator Lemmy pointed to, you can create recursion by passing the function as a parameter to itself (as strange as that sounds):
This prints the first ten Fibonacci numbers:
[1, 1, 2, 3, 5, 8, 13, 21, 34, 55]
,是的。 我有两种方法可以做到这一点,其中一种已经被涵盖了。 这是我的首选方式。
Yes. I have two ways to do it, and one was already covered. This is my preferred way.
这个答案非常基本。 它比雨果·沃尔特的回答简单一点:
雨果·沃尔特的回答:
This answer is pretty basic. It is a little simpler than Hugo Walter's answer:
Hugo Walter's answer:
希望这对某人有帮助。
Hope it would be helpful to someone.
现在,我们可以使用新的 Python 语法来使其更短、更易于阅读:
Fibonacci:
Factorial:
We use
:=
来命名 lambda:直接在 lambda 本身中使用名称并立即调用它作为匿名函数。(参见https://www.python.org/dev/peps/pep-0572< /a>)
We can now use new python syntax to make it way shorter and easier to read:
Fibonacci:
Factorial:
We use
:=
to name the lambda: use the name directly in the lambda itself and call it right away as an anonymous function.(see https://www.python.org/dev/peps/pep-0572)
顺便说一句,我建议不要缓慢计算斐波那契:
我建议快速计算斐波那契:
它的工作速度非常快。
这里还有阶乘计算:
By the way, instead of slow calculation of Fibonacci:
I suggest fast calculation of Fibonacci:
It works really fast.
Also here is factorial calculation:
我喜欢莫托库尔的回答,因为它很简洁。 以下是我关于寻找解决方案的想法:
对于递归,我们需要调用相同的方法,但由于它是 lambda,我们无法获得对它的引用。 我们引用名称的一种方法是通过方法参数。 因此,我们要调用的方法应该作为参数传递。 (另一种方法是通过检查调用堆栈来获取当前方法的引用,如 habnabit 的答案)
接下来的事情是能够将不同的值传递给每个递归调用。 所以我们引入另一个参数来保存该值。
计算 6 的阶乘的示例:
或者
从一开始就定义参数而不是对其进行硬编码:
I liked motokur's answer as its succint. Here's my thinking about finding the solution :
For recursion, we need to call the same method but since its a lambda, we can't get a ref to it. One way we can reference a name is via method parameters. So, the method we want to call should be passed as a parameter. ( Another way is to get a ref to the current method by inspecting the call stack as in habnabit's answer)
The next thing is to be able to pass different values to each recursive call. So we introduce another parameter to hold the value.
A example calculating the factorial of 6 :
OR
Defining the param from the start instead of hard-coding it :
嗯,不完全是纯粹的 lambda 递归,但它适用于只能使用 lambda 的地方,例如,reduce、映射和列表推导式或其他 lambda。 诀窍是受益于列表理解和 Python 的名称范围。 以下示例通过给定的键链遍历字典。
lambda 重用列表理解表达式 (fn) 中定义的名称。 这个例子相当复杂,但它展示了这个概念。
Well, not exactly pure lambda recursion, but it's applicable in places, where you can only use lambdas, e.g. reduce, map and list comprehensions, or other lambdas. The trick is to benefit from list comprehension and Python's name scope. The following example traverses the dictionary by the given chain of keys.
The lambda reuses its name defined in the list comprehension expression (fn). The example is rather complicated, but it shows the concept.
我知道这是一个旧线程,但它在一些谷歌搜索结果中排名很高:)。 随着 python 3.8 的到来,您可以使用海象运算符以更少的语法实现 Y 组合器!
I know this is an old thread, but it ranks high on some google search results :). With the arrival of python 3.8 you can use the walrus operator to implement a Y-combinator with less syntax!
简短回答
编辑:04/24/2022
解释
为此,我们可以使用定点组合器,特别是
Z
组合器,因为它可以在严格语言中工作,也称为急切语言:定义
fact
函数并修改它:注意:
并使用它:
也可以看看:
定点JavaScript 中的组合器:记忆递归函数
Short answer
Edited: 04/24/2022
Explanation
For this we can use Fixed-point combinators, specifically
Z
combinator, because it will work in strict languages, also called eager languages:Define
fact
function and modify it:Notice that:
And use it:
See also:
Fixed-point combinators in JavaScript: Memoizing recursive functions
我做了一些关于它的作业并弄清楚了一些事情,这是带有递归调用的 lambda 函数的示例:
I got some homework about it and figured out something, heres an example of a lambda function with recursive calls:
很简单:
As simple as:
Lambda 可以轻松替换 Python 中的递归函数:
例如,这个基本的compound_interest:
可以替换为:
或为了获得更多可见性:
用法:
输出:
Lambda can easily replace recursive functions in Python:
For example, this basic compound_interest:
can be replaced by:
or for more visibility :
USAGE:
Output:
如果你真的是受虐狂,你也许可以使用 C 扩展来做到这一点,但这超出了 lambda(未命名、匿名)函数的能力。
否。(对于大多数否值)。
If you were truly masochistic, you might be able to do it using C extensions, but this exceeds the capability of a lambda (unnamed, anonymous) functon.
No. (for most values of no).