递归程序英文解释翻译、递归程序的近义词、反义词、例句
英语翻译:
【计】 recursive routine
相关词条:
1.recursiveprogram分词翻译:
递的英语翻译:
give; hand over; pass; in the proper order; successively归程的英语翻译:
return journey序的英语翻译:
foreword; initial; order; preface; prolegomenon; sequence网络扩展解释
递归程序
di4 gui1 cheng2 xu4
递归程序是指在程序中调用自身的一种编程技术。递归程序可以让问题得到简化,更容易理解和解决。
英文解释
Recursive program
A recursive program is a programming technique that calls itself within the program. Recursive programs can simplify problems and make them easier to understand and solve.
英文读音
rɪˈkɜrsɪv ˈproʊɡræm
英文用法
The term "recursive program" is commonly used in computer science and programming.
英文例句
Here is an example of a recursive program that calculates the factorial of a number:
这是一个递归程序计算一个数的阶乘的例子:
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n-1)
英文近义词
用递归方式实现的程序,递归函数
Synonyms for recursive program include program implemented with recursion, recursive function.
英文反义词
迭代程序,循环程序
Antonyms for recursive program include iterative program, loop program.
英文单词常用度
递归程序是一个比较常见的计算机科学和编程概念,在计算机科学和软件开发领域被广泛使用。
The term "recursive program" is a commonly used concept in computer science and programming, and is widely used in the fields of computer science and software development.