搜索资源列表
利用递归实现指定目录下的EXE文件查找.rar
- 编程查找指定目录下所有EXE文件,并将其全路径存入Result.txt中,要求用递归
di4
- 对有名的\"跳马问题\",利用递归与回朔法,通过C语言来实现-of the famous "vault", and the use of recursive back Schomburg, the C language to achieve
二叉树jian
- 这个程序采用先序建立二叉树,并分别使用递归和非递归算法实现了对该二叉树的先中后序的遍历输出,并给出了一定的使用说明-this procedure was used in order to establish a binary tree respectively, and the use of recursive and non - recursive algorithm of this binary tree after the first sequence which Ergodic outp
wodechengxu
- 本程序实现的是一个对于一个给定的数字集合,再给一个数字限制,求得这个集合的所有子集合,使子集合的各个元素之和为给定的数字限制,如果没有这样的子集合,则输入为空! 程序本身运用的是回朔算法,但是值得注意的是,我用的是非递归的形式实现的,所以就显现出了一定的难度. -this program is one for a given set of figures, to give a figure restrictions this assembly obtained all the
fudfs
- 用dfs非递归算法遍历图。创 建图是用链表来实现。 -with scores of non - recursive algorithm traverse map. Map is created using chain is to be achieved.
doublelink
- 我写的二维链表程序(采用非递归算法实现了二维链表程序),大家可以自由使用!如果有更好的算法请给我回复.-I wrote the two-dimensional chain (non - recursive algorithm to achieve a two-dimensional chain procedures), We can freely use! If there is a better algorithm please give me a reply.
Three_Dim_Link
- 我的三维链表程序,非递归算法实现,希望各位提出宝贵意见,实际上完全可以从此得出任意多维链表的算法.-3D chain procedures, non - recursive algorithm, hoping to give valuable advice Since then, in fact, can draw arbitrary multi-dimensional chain algorithm.
duigui
- C++递归实现n个字符的子集,其中也有字符-C recursive n characters subset of them are characters
5.4
- 该程序代码是求数组平均值问题,采用递归算法实现.-the program code is the average for the array, using recursive algorithm.
k_meanslr
- 用C++实现的聚类,随机数在文档中给出,通过递归调用的方式实现-with C + + realization of the clustering, random number in the document presented by the recursive call in a way
tree
- 树的应用,实现树的递归,非递归的多种顺序查找 -tree applications, the tree is recursive and non - recursive sequence of the multiple search
haxibiao
- 八皇后问题是一个古老而著名的问题,是回溯算法的典型例题。该问题是十九世纪著名的数学家高斯1850年提出:在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。可以利用递归方法分别一一测试每一种摆法,直到得出正确的答案。 要求: 1、在处理每个题目时,要求从分析题目的需求入手,按设计抽象数据类型、构思算法、通过设计实现抽象数据类型、编制上机程序和上机调试等若干步骤完成题目,最终写出完整的分析报告。前期准备工作完备与否直接影
migong
- 建立迷宫的模型,实现迷宫的非递归查找和返回查找结果和迷宫路径
datastructure
- 设计邻接表类,实现无向图的深度优先非递归遍历,无向图的广度优先遍历,并设计主函数输入数据进行测试
hannuota
- 实现汉诺塔的移动步骤, 使用递归算法。
hwlhanoi
- 该程序是有关汉诺塔的递归实现,是在VC2.0下实现的,具体算法是递归.-that the procedure was the Tower of Hanoi Recursive is VC2.0 under the specific algorithm is recursive.
AVL树实现
- 纯C实现的AVL树,Demo是MFC的。非递归的遍历,完全支持添加、删除和搜索节点。设计灵活,容易扩展。以下是API struct tagAvlTree; typedef struct tagAvlTree AvlTree; struct tagAvlNode; typedef struct tagAvlNode AvlNode; struct tagAvlNode { AvlNode *left; AvlNode *right; int32_t height;