搜索资源列表
遍历二叉树的4个非递归算法
- 二叉树的4个非递归算法,中序先序后序和层次遍历,算法都有注释而且很详细,适合数据结构学习者使用-binary tree four non - recursive algorithm, the first sequence after sequence and the sequence level traversal algorithm Notes but have very detailed data structure suitabl
背包问题递归算法
- 背包问题的递归算法,以C语言原代码给出,有需要的朋友 可以下载,不许要帐号,自由下载。-knapsack problem recursive algorithm to the original C language code is given, a friend in need can be downloaded allowed to account, free download.
迷宫探路IV(递归算法)
- 迷宫探路IV(递归算法) -maze Pathfinder IV (recursive algorithm)
改进的OTSU局部递归算法
- 改进的OTSU局部递归算法-improve the local recursive algorithm
迷宫问题的递归算法
- 迷宫问题的递归算法-recursive algorithm for maze problem
迷宫问题的非递归算法(栈实现
- 迷宫问题的非递归算法-maze of non - recursive algorithm
后序遍历的非递归算法
- 二叉树后序遍历的非递归算法-binary tree traversal sequence of non - recursive algorithm
中序遍历的非递归算法
- 二叉树中序遍历的非递归算法-Binary preorder non - recursive algorithm
HANOI非递归算法(带动画演示)
- HANOI非递归算法(带动画演示)-HANOI non - recursive algorithm (with the animation demo)
7.先序遍历的非递归算法
- 先序遍历的非递归算法-preorder non - recursive algorithm
9.层次的非递归算法
- 层次的非递归算法-level of non - recursive algorithm
背包问题(动态规划递归算法)的vc程序
- 用动态规划算法中的递归法求解背包问题的vc++6程序,已通过测试
迷宫问题的递归算法
- 迷宫问题的递归算法-recursive algorithm for maze problem
迷宫问题的非递归算法(栈实现
- 迷宫问题的非递归算法-maze of non- recursive algorithm
递归
- 递归算法,字符串的倒序输出。-recursive algorithm, the reverse output string.
语法分析之左递归实验
- 此为编译原理实验报告 学习消除文法左递规算法,了解消除文法左递规在语法分析中的作用 内含 设计算法 目的 源码 等等.... 算法:消除左递归算法为: (1)把文法G的所有非终结符按任一种顺序排列成P1,P2,…Pn 按此顺序执行 (2)FOR i:=1 TO n DO BEGIN FOR j:=1 DO 把形如Pi→Pjγ的规则改写成 Pi→δ1γ δ2γ … δkγ。其中Pj→δ1 δ2 … δk是关于Pj的所有规则; 消除关于Pi
遍历二叉树的3个递归算法
- 此程序给出了遍历二叉树的三个递归算法,并且利用了先序扩展序列建立二叉树,对于数据结构学习者有很大帮助-this procedure is a traversal of a binary tree three recursive algorithm, and use the first sequence extended sequence to establish a binary tree, the data structure for
遍历二叉树的4个非递归算法
- 二叉树的4个非递归算法,中序先序后序和层次遍历,算法都有注释而且很详细,适合数据结构学习者使用-binary tree four non- recursive algorithm, the first sequence after sequence and the sequence level traversal algorithm Notes but have very detailed data structure suitable
背包问题递归算法
- 背包问题的递归算法,以C语言原代码给出,有需要的朋友 可以下载,不许要帐号,自由下载。-knapsack problem recursive algorithm to the original C language code is given, a friend in need can be downloaded allowed to account, free download.
eight queens 递归
- 八皇后递归(eight queens)