搜索资源列表
经典汉诺塔问题c语言版
- 汉诺塔是初学数据结构的同学最头疼的问题,这里是一个用递归函数解决汉诺塔问题的经典c语言程序,里面有代码和执行文件。-HANOR data structure is that when the students most headaches, here is a solution using a recursive function HANOR a classic c language program, which has code an
磁盘文件递归读取
- 递归读取磁盘文件,使用库dirent.h中的相关函数-recursive disk read documents and use the library dirent.h correlation function
最大团问题2
- 定义一个类,调用构造函数,递归函数,输出函数-definition of a category, called Constructors, recursive function, output function
折半查找
- 数据结构二分查找,演示了使用递归函数或者循环语句实现的二分查找算法,两种方法都使用了称为二分搜索的算法-data structure search for two hours to demonstrate the use of recursive function or loop is the realization of two searching algorithm, both methods are used as a two-S
多尺度特征匹配(这个函数使用递归的方法来选择和匹配特征)
- 这个函数使用递归的方法来选择和匹配特征
函数递归
- 函数递归
磁盘文件递归读取
- 递归读取磁盘文件,使用库dirent.h中的相关函数-recursive disk read documents and use the library dirent.h correlation function
redown
- 在编译原理词法实现中的一个递归下降分析程序,将无左递归的文法符号对应一个函数.-in compiler theory of morphology achieve a recursive analysis program fell to the left- recursive grammar symbols of a corresponding function.
LL(1)yufafenxi
- *--- --- --声明--- --- -----*/ /* VC6.0下运行通过 此程序为本人苦心所做,请您在阅读的时候,尊重本人的 劳动。可以修改,但当做的每一处矫正或改进时,请将改进 方案,及修改部分发给本人 (修改部分请注名明:修改字样) Email: jink2005@sina.com QQ: 272576320 ——初稿完成:06-5-27 jink2005 补充
BTree
- 二叉树的递归算法:计算高度、结点个数、交换左右儿子 问题的描述 写一完整函数,计算树的结点数目int CountNode(BTNode<T>* &t); 完善以下两个函数: 计算树的高度int Depth(BTNode<T>* &root); 对树的所有子树交换左右孩子void swapsons(BTNode<T>* &t);-Binary Tree Recursive Algor
CFileFindExt
- CFileFind的扩展类CFileFindExt。加强了CFileFind类的功能,直接做成类CFileFind的继承类,非递归化时(为加快搜索速度,减少开销)将先深遍历改为层次遍历,用户根据需要可增加返回所有子目录名函数以及其它多参数处理函数。-CFileFind the expansion of category CFileFindExt. Strengthened CFileFind functions directly int
Recursivesolve
- 递归函数编程的优点时简单 但耗用空间很大 由于频繁的调用函数 时间耗用也很可观 这个算法可以在空间和时间上解决递归函数的缺点 -The advantages of recursive functions when programming simple but frequent consumption is much room for the call function as a result of time spent in this
EdgeTrace
- 边界跟踪之Delphi源码,可以直接做为函数调用。利用递归算法,简单好用。-Boundary trace of the Delphi source code can be directly as a function call. The use of recursive algorithm, simple and easy to use.
mineSweeperSharp
- 递归函数应用实例()
排序递归算法
- 数组做函数参数的退回问题 退回为一个指针, 1 正确做法:把数组的内存首地址和数组的有效长度传给被调用函数 2 //实参的a 和 形参的a 的数据类型本质不一样形参中的数组 ,编译器会把它当成指针处理 这是C语言的特色排序 本质也剖析 3 形参写在函数上,和写在函数内是一样的,只不过是具有对外的属性而已.(The return problem of the array as a function parameter is r
C语言迭代法详细讲解
- C语言迭代法举例讲解和递归法举例讲解.对于学完C语言函数后,详细了解函数迭代法和 递归法解决一些问题.(C language iterations are illustrated with examples and examples of recursion. After learning the function of the C language, the function iteration and the function i
LRSs
- 递归最小二乘(RLS)是一种自适应滤波算法,它可以递归地找到最小化加权线性最小二乘代价函数与输入信号相关的系数。这种方法与其他算法相比较,例如最小均方(LMS),旨在减少均方误差。在RLS的推导中,输入信号被认为是确定性的,而对于LMS和类似的算法,它们被认为是随机的。(Recursive least squares (RLS) is an adaptive filter algorithm that recursively finds
2
- 根据题目要求使用递归函数,根据题目给定的数学算式,求出Succ(n)的值。可以在每一次调用递归函数时增加一个计数器,用来计算调用了多少次函数,最后输出Succ(n)的值和调用递归函数次数的值。(According to the requirement of topic, recursive function is used to calculate the value of Succ (n) according to the mathe
maze1
- 本源码通过C# GDI+ 编写。提供三种生成迷宫的算法(深度优先法,递归分割法,随机PRIM法),提供基于广度优先算法的迷宫自动寻径算法。迷宫大小、单元格大小、线粗均可自定义。优化了算法,递归改为栈实现,能够生成任意大地图而不会引起原来的函数递归栈溢出问题。生成迷宫后,支持键盘按键进行手动走迷宫。(The source code is written by C# GDI+. Three algorithms of maze genera
DomainTransformFilters-Source-v1.0
- 递归域变换滤波器,Domain Transform Filter,Matlab并没有收录RF这个函数,但Matlab2014a已经有imguidedfilter函数,主要学习运用磨皮滤镜对人物皮肤进行磨皮美化,本技法可以认为是高低频磨皮法的发展,可以完美保留人物皮肤的纹理,因此磨皮效果好;它又巧妙地融合了插件磨皮,因此操作很简单。(RF,Domain Transform Filter,Matlab)