英文字典中文字典


英文字典中文字典51ZiDian.com



中文字典辞典   英文字典 a   b   c   d   e   f   g   h   i   j   k   l   m   n   o   p   q   r   s   t   u   v   w   x   y   z       







请输入英文单字,中文词皆可:

recursion    
递归,循环

递归,循环

recursion
递回

recursion
n 1: (mathematics) an expression such that each term is
generated by repeating a particular mathematical operation

Recursion \Re*cur"sion\ (-sh?n), n. [L. recursio. See {Recur}.]
The act of recurring; return. [Obs.] --Boyle.
[1913 Webster]

When a {function} (or {procedure})
calls itself. Such a function is called "recursive". If the
call is via one or more other functions then this group of
functions are called "mutually recursive".

If a function will always call itself, however it is called,
then it will never terminate. Usually however, it first
performs some test on its arguments to check for a "base case"
- a condition under which it can return a value without
calling itself.

The {canonical} example of a recursive function is
{factorial}:

factorial 0 = 1
factorial n = n * factorial (n-1)

{Functional programming languages} rely heavily on recursion,
using it where a {procedural language} would use {iteration}.

See also {recursion}, {recursive definition}, {tail recursion}.

[{Jargon File}]

(1996-05-11)


请选择你想看的字典辞典:
单词字典翻译
Recursion查看 Recursion 在百度字典中的解释百度英翻中〔查看〕
Recursion查看 Recursion 在Google字典中的解释Google英翻中〔查看〕
Recursion查看 Recursion 在Yahoo字典中的解释Yahoo英翻中〔查看〕





安装中文字典英文字典查询工具!


中文字典英文字典工具:
选择颜色:
输入中英文单字

































































英文字典中文字典相关资料:


  • Recursion - Wikipedia
    Recursion occurs when the definition of a concept or process depends on a simpler or previous version of itself [1] Recursion is used in a variety of disciplines ranging from linguistics to logic
  • 函数递归(Recursion)一篇便懂 - CSDN博客
    在 C 语言中, 递归 (Recursion)是一种函数调用自身的编程技术。 当一个函数在其定义中调用自身时,就称为递归函数。 了解递归思想 把⼀个大型复杂问题层层转化为⼀个与原问题相似,但规模较小的子问题来求解;直到子问题不能再 被拆分,递归就结束了。
  • Pioneering AI Drug Discovery | Recursion
    All of our results feed back into our drug discovery and drug development platform – the Recursion Operating System – in a continuously improving feedback loop
  • 全面理解递归 - 知乎
    1 递归原理 1 1 什么是递归,它是如何工作的? 我们先来看一下递归(recursion)的定义: 递归是一种解决问题的有效方法,在递归过程中,函数将自身作为子例程调用。 简单说程序调用自身的编程技巧叫递归。
  • 递归算法_百度百科
    递归算法(recursive algorithm、recursion algorithm)在计算机科学中是指一种通过重复将问题分解为同类的子问题而解决问题的方法。 递归式方法可以被用于解决很多的计算机科学问题,因此它是计算机科学中十分重要的一个概念。
  • 一次看懂遞迴 (Recursion) 的思維模式(一) - Medium
    這篇系列文章,是想要帶領程式的初學者進入遞迴(Recursion)的世界。或許閱讀文章的你,對基本的迴圈操作有一定的認識了,但沒學過遞迴,或
  • Python 递归 (Recursion) - 菜鸟教程
    Python 递归 (Recursion) 在本文中,您将学习如何创建递归函数 (调用自身的函数)。 什么是Python中的递归? 递归是根据自身定义某些内容的过程。 一个物理世界的示例是放置两个彼此面对的平行反射镜。 它们之间的任何对象都将递归地反映出来。 Python递归函数
  • C 递归 - 菜鸟教程
    语法格式如下: void recursion() { statements; recursion(); * 函数调用自身 * } int main() { recursion(); } 流程图: C 语言支持递归,即一个函数可以调用其自身。 但在使用递归时,程序员需要注意定义一个从函数退出的条件,否则会进入死循环。





中文字典-英文字典  2005-2009