递归算法(英语:recursion algorithm)在计算机科学中是指一种通过重复将问题分解为同类的子问题而解决问题的方法。递归式方法可以被用于解决很多的计算机科学问题,因此它是计算机科学中十分重要的一个概念。绝大多数编程语言支持函数的自调用,在这些语言中函数可以通过调用自身来进行递归。计算理论可以证明递归的作用可以完全取代循环,因此在很多函数编程语言(如Scheme)中习惯用递归来实现循环。
Recursive Formulation(递归算法)是一种高级计算理论,采用相对坐标系,比应用绝对坐标的其他软件求解速度快,尤其在求解大规模的、高速及刚性问题上更能彰显其功...
基于36个网页-相关网页
递归算法(recursive arithmetic)就是为了得 到问题的解,将问题推到比原问题更简单的解, 然后再回到原问题上来。例如,求f(n)= n!
基于20个网页-相关网页
According to the features of the existed algorithms of 0-1 knapsack problem,a new non-recursive algorithm is formally derived in the paper.
针对目前求解0-1背包问题算法的优缺点,开发了一种新的非递归算法。
参考来源 - 0A dynamic 8-tree structure and a relative self-similar recursion algorithm are presented to model a dynamic workpiece object,which is machinable.
提出了动态八叉树结构和相应的自相似裂变递归算法,实现了虚拟环境下的可加工工件动态建模。
参考来源 - 基于Internet的图象与建模相结合的虚拟现实关键技术研究Thirdly, it decomposed the product structure tree by recursion arithmetic and stored the data into data window. this article studied the different names between design material and standard material and introduced composite method which contains programmer and medi-group.
第三,基于递归算法,对产品结构树进行分解,利用PB中的数据窗口作为数据结果集的存放容器,通过数据窗口对数据结果进行汇总处理,生成了最底层的物料组成信息。
参考来源 - 基于AutoCAD的产品结构数据管理研究Based on the classic examination theory,a constraint-based parameter model of generating examination paper is proposed and a recursive arithmetic based on the model is designed.
在经典测试理论的基础上,提出了一种约束试卷生成的参数模型,并根据该模型设计了一种自动试卷生成的递归算法。
参考来源 - 基于B/S模式在线考试系统的通用题库设计Multi-dimensional state space was proposed to describe network traffic when multi-service program streams converge at the network edge. Through Kaufman-Roberts recursive algorithm, multiple businesses blocking rate were calculated under bandwidth sharing circumstance.
采用多维状态空间来描述多业务流边缘汇聚时的网络流量,并利用Kaufman-Roberts递归算法计算出多业务共享带宽模式下的业务阻塞率,用以支持交互业务的新部署。
参考来源 - HFC网络交互业务支撑关键技术研究This paper analyses the numerical simulation problems of the semiconductor devices deeply. A one dimensional pn junction diode is worked out satisfyingly by the recursive method with the Matlab5.3 software.
论文深入的分析了半导体器件的数值模拟问题,利用Matlab5.3等计算机工具,用解三对角矩阵方程的递归算法,实现了pn结二极管的一维求解,取得了比较满意的结果。
参考来源 - CCD计算机模拟研究·2,447,543篇论文数据,部分数据来源于NoteExpress
处理器实现了一种递归算法。
在 read() 方法中可以找到递归算法。
一个分形几何中最常用的递归算法所画的鸡冠花,仅几行代码。
A fractal geometry of the most commonly used recursive algorithm painting cockscomb, just a few lines of code.
So, the curious thing about recursion is that pretty much always can you implement this idea of doing the same thing again and again and again but with smaller bytes each time.
可见,递归算法中新奇的一点是,为了实现一个想法,你可以一遍又一遍地做相同的事情,但每次的规模都会有所减小。
Because the algorithm I proposed is going to leverage this idea of recursion which recall was just a piece of jargon we tossed out at the last-- at the end of last week's lecture, last time's lecture recursion really in this context refers to the act of a function calling it's self.
因为我提出的这种算法使用了,递归的思想,这是上周课程的最后,所提出的一个术语,上次的课程中,递归是指,函数的自我调用。
应用推荐