recursive是什么意思,recursive的意思翻译、用法、同义词、例句
recursive英标
英:/'rɪˈkɜːsɪv/ 美:/'rɪˈkɜːrsɪv/
常用词典
adj. [数] 递归的;循环的
例句
Mathematicians have found that the answer to this problem is infinitely recursive.
数学家发现这道题的答案是无限循环的。
The calculation results of this program are recursive.
这个程序的计算结果是递归的。
This recursive linear equation is one of the key points of this examination.
这种回归线性方程是这次考试的重点之一。
Flip the recursive switch.
点一下“递归(recur sive)”开关。
I just used a recursive definition.
我需要进行递归定义。
Steps 3 and 4 are recursive searches.
步骤3和步骤4是递归搜索。
Notice that broker is tail recursive.
请注意broker是尾递归的。
Lifting is recursive.
提升是递归的。
常用搭配
recursive algorithm
递归算法
recursive function
递归函数
同义词
adj.|circular/cyclic;[数]递归的;循环的
网络扩展资料
单词:recursive
词性
形容词
发音
/rɪˈkɜrsɪv/
词义解释
递归指的是在定义中使用了该定义本身的过程。在计算机科学中,递归是一种常用的编程技巧,通过递归可以将一个大问题分解成多个小问题,从而简化问题的解决过程。递归也可以用来描述自相似的事物,比如分形图形。
例句
- The function is recursive and calls itself repeatedly until a base case is reached. (该函数是递归的,会反复调用自身直到达到基本情况。)
- 这个算法使用递归来解决问题。(This algorithm uses recursion to solve problems.)
用法
递归是一种强大的编程技巧,它可以简化代码,使代码更加易读和易于维护。递归可以用来解决许多复杂的问题,比如图形处理、排序算法、搜索算法等。在使用递归时,需要注意控制递归的深度,避免出现无限递归的情况。
近义词
- iterative(迭代的)
反义词
- non-recursive(非递归的)