词语:递归热度:172

词语递归拆分为汉字:

递字的拼音、笔画、偏旁部首、笔顺、繁体字,递字字源来历,递字演变

传送,传达:传~。投~。~送。~交。~眼色(以目示意)。呈~国书。顺着次序:~补。~变。~增。~减。~升。~降(jiàng )。古代指驿车。……

归字的拼音、笔画、偏旁部首、笔顺、繁体字,归字字源来历,归字演变

1. 归 [guī]归 [guī]返回,回到本处:~国。~程。~侨。~宁(回娘家看望父母)。~省(xǐng )(回家探亲)。~真反璞。还给:~还。物~原主。趋向,去往:~附。众望所~。合并,或集中于一类,或集中于一地:~并。~功。~咎。由,……

 

查询词语:递归,试一试,用递归来写一句话,用递归造句。

汉语拼音:dì guī

 

词语递归基本解释

按照某一包含有限步数的法则或公式对一个或多个前面的元素进行运算,以确定一系列元素(如数或函数)的方法。

 

词语递归双语例句

双语例句
  1. The recursive CTE definition must contain at least two CTE query definitions, an anchor member and a recursive member.

    递归CTE定义至少必须包含两个CTE查询定义,一个定位点成员和一个递归成员。

  2. Depth-first walking means that the processor visits all the children of a given node recursively until it has processed the entire document.

    深度优先遍历意味着,处理器递归访问某一给定节点的所有子代,直到处理了整个文档为止。

  3. You may be thinking that you know how write this program to perform faster or better without recursion.

    您可能会认为自己知道如何不使用递归编写这个程序,使其执行更快或者更好。

  4. Well, there is also a possibility of using function names for recursion, but you will soon see that this is often impractical nowadays.

    当然还有可能在递归调用中使用函数名称,但是你将很快看到在当下他通常不大实用。

  5. And thus, the ability to understand pointers and recursion is directly correlated with the ability to be a great programmer.

    因此,是否真正理解指针和递归,与是否是一个优秀程序员直接相关。

  6. Known as lambda calculus, it was designed to investigate the function definition and application, as well as the concept of recursion.

    它被称为lambda演算,用于研究函数定义与应用程序以及递归概念。

  7. Too many method calls is often indicative of a very deep or unbounded recursion.

    过多的方法调用通常意味着存在非常深的递归或无限递归。

  8. Probably the best way to understand is with a real example and to do that, we need a recursive function.

    可能理解它的最佳途径是接触一个实际的例子,我们需要一个递归函数。

  9. The last function you're going to create is going to take some recursion, where the true power of list processing using Lisp lies.

    将要创建的最后一个函数要执行一些递归操作,这是使用Lisp进行列表处理的真正强大之处。

词语递归百科解释:

递归

程序调用自身的编程技巧称为递归( recursion)。递归做为一种算法在程序设计语言中广泛应用。

一个过程或函数在其定义或说明中有直接或间接调用自身的一种方法,它通常把一个大型复杂的问题层层转化为一个与原问题相似的规模较小的问题来求解,递归策略只需少量的程序就可描述出解题过程所需要的多次重复计算,大大地减少了程序的代码量。递归的能力在于用有限的语句来定义对象的无限集合。一般来说,递归需要有边界条件、递归前进段和递归返回段。当边界条件不满足时,递归前进;当边界条件满足时,递归返回。