Tail-recursive的意思|示意

美 / / 英 / /

尾递迴


Tail-recursive的网络常见释义

尾部递归 这种实现的方法就叫尾部递归(tail-recursive),通过tail-recursive,iteration就可以转换成原来的过程调用机制。

Tail-recursive相关短语

1、 tail recursive 尾递归

2、 Tail Recursive Call 尾递归调用

3、 tail recursive evaluation 尾递归评估

Tail-recursive相关例句

Whilst starting to learn lisp, I've come across the term tail-recursive.

虽然开始学习口齿不清,我遇到这个词的尾递归的。

If we could find a way to remove these unneeded stack frames, our tail-recursive functions would run in a constant stack size.

如果我们能找到一个除去这些不需要的栈结构的方法,那么我们的尾部递归函数就可以在固定大小的栈中运行。

Another difference is that, internally, the zipper version USES a linear tail-recursive traversal of the data structure instead of a recursive traversal.

另外一项差异在于,在zippers版本内部使用的是数据结构的线性尾递归遍历,而非递归遍历。

In Erlang there is no need for loops because tail recursive functions are transparently optimized to run in constant space.

而在Erlang中不需要使用循环,因为尾递归函数会被自动优化在固定的空间中运行。

Notice that broker is tail recursive.

请注意broker是尾递归的。