搜索资源列表
totalarrange-recursion-backtracking
- 在排列树上递归回溯搜索全排列问题的全部解-Recursive backtracking search tree in the arrangement of the whole array of all solutions of the problem
883
- 883倒酒问题 递归法 深度优先搜索 规则集-883 wine
ListAllFiles
- 为公司某个项目开发的软件的一部分,可用于递归显示/搜索某文件夹下的所有文件.可通过修改源代码实现各种功能.-Developed a project for the company as part of the software can be used to recursively display/search a folder for all files. Can be achieved by modifying the source code for various functions.
bahuanghwent
- 在一个8*8的棋盘上放置8个皇后,不允许任何两个皇后在棋盘的同一行、同一列和同一对角线上,即在每一行、每一列只能有一个皇后。 要求:八皇后问题是一个古老的搜索问题,可以用递归算法来实现,在递归过程中,一一测试每一种放法,直到得出全部正确答案为止。 〔实现提示〕定义一个8*8的二维数组(为方便处理,下标范围为1:8为好); 对数组进行初始化;(全置空) 从n行开始放置第一个皇后(满足一行只有一个皇后的要求)后对1~8列进行测试;若满足条件则保存皇后所在位置,直到所有皇后放置好
1
- 迷宫求解,利用深度优先搜索和非递归算法,地图可随意设置-Maze solving, the use of depth-first search and non-recursive algorithm, the map could be set
graph
- 无向图的遍历搜索,可以实现非递归深度搜素和广度搜索。-Undirected graph traversal search, you can achieve a non-recursive depth the Su-search and breadth of the search.
BFSaDFS
- 基于邻接矩阵的深度搜索的递归和非递归,广度搜索的非递归实现-Based on the depth of the search of the adjacency matrix recursive and non-recursive, non-recursive implementation of the breadth of search
code
- 使用回溯法解决的典型问题的算法:骑士巡游问题,n皇后问题,0-1背包问题。 使用递归与分治策略解决的几个问题的算法:Hanoi塔问题和二分搜索技术。-Uses backtracking method to solve the problems of the typical algorithms: the knight tour problem, n queen problem, 0-1 knapsack problem. Recursion and divide and conq
AVLTree
- AVL 树是平衡二叉搜索树,所以首先 必须满足搜索树,即l_child值<parent值<=r_child值。这个在前面已经实现了。插入和删除不停的递归就可以。-Two AVL tree is balanced binary search trees, so we must first meet the search tree, l_child value and <parent value of <=r_child value. The in front has bee
graph
- 图的深度递归与非递归遍历,广度优先搜索遍历。VC6.0-Figure recursive and non-recursive traversal depth, breadth-first search traversal.
software-design-I
- c++实现的非常详细的数据结构与算法代码,队列,链表,三元组,哈弗曼树,树的各种递归,非递归遍历算法,树与森林相互转化算法,图的深度,广度优先搜索算法,双连通算法,强连通算法,拓扑排序算法,最短路径算法,哈希,快速排序,归并排序等等。-C++ very detailed data structure and algorithm code, queues, linked lists, three tuple Havermann tree, various recursive tree, non r
111
- 使用C#语言,利用递归和非递归两者方法实现搜索全盘文件的功能,搜索功能是比较常用的,故而这个还是比较实用的。-Search function
grammar
- 第1章 算法引论 1.1 算法与程序 1.2 表达算法的抽象机制 1.3 描述算法 1.4 算法复杂性分析 小结 习题 第2章 递归与分治策略 2.1 速归的概念 2.2 分治法的基本思想 2.3 二分搜索技术 2.4 大整数的乘法 2.5 Strassen矩阵乘法 2.6 棋盘覆盖 2.7 合并排序 2.8 快速排序 2.9 线性时间选