搜索资源列表
eightquee
- 非递归八皇后问题,c语言源码实现八皇后问题-Queen
polyfill
- 边界填充算法,将边界填充的递归算法转化成非递归-scan line seed fill
12
- 实现八皇后(一种小游戏)的算法,非递归可以得到所有正确结果。-The achievement of the eight Queen' s (a game) of the algorithm, non-recursive results can be all right.
Tree
- 非递归先序,中序及后序遍历二叉树. 根据二叉树广义表的字符串创建二叉树-First non-recursive sequence, and after the sequence of binary tree traversal
DataStruct
- 此文件夹中共包括十二个小程序 AVL创建平衡二叉树,通过加入一个个的结点创建,并实现了平衡二叉树中的结点删除 Boyer_Moore算法的串模式匹配 Horspool算法的串模式匹配 Graph实现了有向图的非递归广度优先遍历及非递归深度优先遍历 HeapSort利用堆排序实现优先级队列 Merge实现二路归并排序算法 MFK动态规划解背包问题 nqueue求解n皇后问题 QuickSort快速排序算法的实现。 Shell排序算法的实现。 Tree程序
Queen
- 解决八皇后问题的算法,能够用非递归的方法解决八皇后问题-8 Queen' s problem solution algorithm
bianli
- 建立二叉树用非递归方法对树进行遍历,其中用到了栈来保存中间数据。-The establishment of tree with non-recursive method to traverse the tree, which uses a stack to save the intermediate data.
anran
- 非递归的二叉排序树建立与维护,可以实现二叉树的修改、节点删除等-Non-recursive binary sort tree establishment and maintenance, the tree can be modified to delete nodes, etc.
hanoi
- 该程序是实现hanoi问题,采用非递归的方式!-The program is to achieve hanoi problem, use of non-recursive way!
1
- 用c语言来实现 , 用非递归的方式写汉诺塔的问题,-With the c language to realize, the way to write a non-recursive Towers of Hanoi problem,
bitree
- 二叉树遍历程序,非递归方法实现,请参考,数据结构使用-Binary tree traversal procedures, non-recursive method of implementation, please refer to the data structure uses
GaussianClutterPowerSpectrumEstimation
- 本程序已被本人整理到WORD文档中,编程语言为MATLAB,程序中首先利用非递归法产生滤波器系数,生成相关高斯杂波,直接对杂波信号作FFT变换,结果取模平方后除以长度N,即可得到杂波的功率谱,设计参数皆在文档中表明。此程序已经验证是正确可执行的,并能生成图形,值得下载!- This program has been organized into WORD document I, the programming language MATLAB, the program produced the
HanoiTower
- 汉诺塔的画图程序及其汉诺塔的非递归程序。。。。感觉不错,-Tower of Hanoi Tower of Hanoi s Paint program and its non-recursive program. . . . Feel good. . . .
directed_network
- 以邻接矩阵的方式确定有向网,完成: A.建立并显示出它的邻接链表; B.以非递归方式进行深度优先遍历,显示遍历的结果,(并随时显示栈的入出情况); C.对该图进行拓补排序,显示拓补排序的结果,并随时显示入度域的变化情况; D.给出某一确定顶点到所有其他顶点的最短路径-Adjacency matrix to determine a directed network, the completion of: A. To establish and demonstrate its adj
mataqipan
- 设计一个国际象棋的马踏遍棋盘的演示程序。 将马随机放在国际象棋的8×8棋盘Board[8][8]的某个方格中,马按走棋规则(见题集p98)进行移动。要求每个方格只进入一次,走边棋盘上全部64个方格。编制非递归程序,求出马的行走路线,并按求出的行走路线,将数字1,2,3,…,64依次填入一个8×8的方阵,输出之。 -To design a chess board horse travels to the demonstration program. The horses were rand
mataqipan
- 马踏棋盘 数据结构实验。将马随即放在国际象棋的8×8棋盘Board[8][8]的某个方格中,马按走棋规则进行移动。要求每个方格只进入一次,走遍棋盘上全部64个方格。编制非递归程序,求出马的行走路线,并按求出的行走路线,将数字1,2,……,64依次填入一个8×8的方阵,输出之。-mataqipan
Maze
- 迷宫问题 非递归算法 自动生成m*n矩阵,1表示不通,0表示通行-Maze problem of non-recursive algorithms automatically generate m* n matrix, 1 is blocked, passage 0
算法设计
- 问题描述:以一个m×n的长方形表示迷宫,0和1分别表示迷宫中的通路和障碍。设计一个程序,对任意设定的迷宫,求出一条从入口到出口的通路,或得出没有通路的结论。 基本要求:首先实现一个以链表作存储结构的栈类型,然后编写一个求解迷宫的非递归程序。求得的通路以三元组(i,j,d)的形式输出,其中:(i,j)指示迷宫中的一个坐标,d表示走到下一坐标的方向。(Problem Descr iption: a m * n rectangle represents the maze, and 0 and 1 i
1160300803_樊静_实验二
- 森林和树的基本操作 ,森林的存储,森林转化成二叉树,二叉树的先序中序后序非递归遍历,以及区间编码(The basic operations of forests and trees, the storage of forests, the conversion of forests into two forked trees, the preorder and the post order of the two forked trees, and the interval encoding,
Recursive Program
- 递归程序分析方法初探,C++实现尾递归,递归,和非递归实现斐波拉契数列(A First Study of the Analysing Methods of Recursive Program)