搜索资源列表
李森数据结构作业
- 文件夹中包括常用的数据结构的算法,包括二叉树的三种递归和非递归算法,染色问题,八皇后问题,深度广度遍历,约瑟夫环,数值转换,树的高度和叶子节点数,最小生成树 ,两点之间的所有路径-folder include common data structure of the algorithm, including the three binary tree recursive and non - recursive algorithm, Dyeing, 8 Queen, depth and bread
8queenc
- 1) 【八皇后问题】设在初始状态下在国际象棋棋盘上没有任何棋子(皇后)。然后顺序在第1行,第2行,…。第8行上布放棋子。在每一行中有8个可选择位置,但在任一时刻,棋盘的合法布局都必须满足3个限制条件,即任何两个棋子不得放在棋盘上的同一行、或者同一列、或者同一斜线上。试编写一个递归算法,求解并输出此问题的所有合法布局。-1) [8 Queen's problems -- in the initial state in the international chess pieces on no
QUEDIGUI
- 基于递归算法采用C语言实现了数据结构中经典的八皇后问题。-recursive algorithm based on the C language data structure of the classic Queen's eight problems.
queenjava
- 使用回溯递归法实现的八皇后问题的算法源码
pascal
- 用pascal语言实现八皇后的非递归算法
hezhaowu
- 八皇后 的非递归算法 适合初学数据结构的朋友们
eight
- 是个程序是一个很经典的程序,也就是八皇后问题,而且是用递归算法实现的
queen
- 八皇后的递归算法,以数字矩阵输出,包含所有情况
EightQueen.java
- 运用递归算法实现了八皇后问题,基本思路借鉴于四皇后的实现。
“八皇后”问题递归法求解
- “八皇后”问题递归法求解 * 八皇后问题是一个古老而著名的问题,是回溯算法的典型例题。该问题是十九世纪著名的数学家高斯1850年提出:在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少种摆法。 高斯认为有76种方案。1854年在柏林的象棋杂志上不同的作者发表了40种不同的解,后来有人用图论的方法解出92种结果。-"8 Queen's" recursive method * 8 Queen's pr
WL40987330 C语言算法集
- 目录 第一部分 基础篇 001 第一个C程序 002 运行多个源文件 003 求整数之积 004 比较实数大小 005 字符的输出 006 显示变量所占字节数 007 自增/自减运算 008 数列求和 009 乘法口诀表 010&
数据结构18个常见算法
- 八皇后、斐波那契序列、约瑟夫环、二叉树的遍历(递归、终须、先序、后序、层次)、二叉树及树的深度、DFS、Prim构造最小生成树、常见排序算法(选择、折半插入、冒泡)、顺序查找、折半查找
queen
- 八皇后问题。利用了递归算法,很是巧妙!最后一行为输出解的个数,每行共8个数字,这些数字即代表皇后在该行的位置。-It s a code about Eight queen.
EightQueens.rar
- 一个用来研究八皇后问题的java小程序,采用递归算法遍历树来穷举所有符合要求的排列,存储后用图形界面表示出来。,Used to study a problem of the eight Queen of java applets, using recursive tree traversal algorithm to exhaustive array of all meet the requirements, storage, said later from a graphical interf
digui
- 《数据结构课程设计案例精编》上第7章的递归算法,包括Hanoi、maze、八皇后-err
8Queen
- 用DEV C++ 写的实现查找所有八皇后可能的算法。没有用递归,全部是用for循环实现,代码很晦涩,我自己现在都看不明白了。-With DEV C++ to write the achievement of all eight of Queen' s search algorithm may be. Did not use recursion, all is for the cycle to achieve, the code is very obscure, I can not now
Queen
- 解决八皇后问题的算法,能够用非递归的方法解决八皇后问题-8 Queen' s problem solution algorithm
八皇后问题的递归方法
- 该代码是解决经典问题——八皇后问题的C++实现,算法使用了递归的方法,简单易懂。(This C++ code is used for solving the traditional Eight Queen Problem.The algorithm uses recursive method and it is easy to understand.)
Desktop
- 用DFS解八皇后,这个是递归算法跟非递归算法(Using DFS to solve eight queens, this is a recursive algorithm with non recursive algorithm)
eight queens 递归
- 八皇后递归(eight queens)