搜索资源列表
C语言实现的皇后问题
- n皇后问题,可以显示所有的合适路径,典型的回溯算法-n Queen's, will show you all the appropriate path, the typical backtracking algorithm
Estimate
- 理解并掌握分析回溯算法效率的方法。 使用Estimate算法就8皇后问题给出效率估算 -understanding and mastery of backtracking algorithm efficiency analysis method. Use Estimate on 8 Queen's algorithm is efficient estimation problem
short1
- 求最短路径的问题,用了回溯算法,内附说明 及调试 -seek the shortest path problem with the back algorithm, containing descr iptions and Debugging
feedback_loading
- 回溯算法的应用,经典的装载问题,程序通过答辩,好用!-retroactive application of the algorithm, classic loading issues, procedures adopted by the respondent and ease of use!
bbwt
- 自己随便写的 大家看看 最好有人帮我写个回溯算法0-1背包问题的演示软件 -own writing any of us look at the best people to help me write a backtracking algorithm 0-1 knapsack problem of presentation software
My8Queen
- 八皇后问题:用回溯算法做的 -8 Queens : The backtracking algorithm
queue8
- 八皇问题,是数据结构中一种典型的问题,一般采用回溯算法来解决,是一种经典的算法-eight Huang, data structure is a typical problem, generally use backtracking algorithm to solve them. is a classical algorithm
beibaowenti
- 这是一个用回溯算法解0--1背包问题的C++程序(好用的)
HorseTravelDemo
- 一个解决国际象棋的马周游问题的算法.本程序使用改善后的回溯算法来加速问题的解决.
N_QueensDemo
- 一个解决国际象棋中的八皇后问题的回溯算法.
sor
- 回溯算法的一些题目的源代码,希望对大家有帮助
算法设计
- 算法设计有贪心法,回溯法,动态规划等 算法设计有贪心法,回溯法,动态规划等
0-1背包的回溯算法
- 回溯法解决0-1背包问题-Backtracking 0-1 knapsack problem solving
8quene
- 暴力算法和回溯算法求解8皇后问题,图像化界面-Violence algorithm and backtracking algorithm 8 Queen
Queen8
- 经典八皇后回溯算法实现,希望能帮助你的学习-Queen 8
NQueenProblem
- n皇后问题,关于如何计算n皇后问题,里面的代码容易看懂,核心的是在针对试探-回溯算法所用的数据结构的设计上。 程序采用了递归,也就是借用了编译系统提供的自动回溯功能。-N Queen Problem
Backtracking_algorithm_design
- 回溯算法设计,用于课程设计的算法分析与设计的实验内容,包括实验截图-Backtracking algorithm design for curriculum design, algorithm analysis and design of experiments, including the experimental Screenshot
code
- 最佳调度问题的回溯算法 设有n个任务由k个可并行工作的机器来完成,完成任务i需要时间为 。试设计一个算法找出完成这n个任务的最佳调度,使完成全部任务的时间最早。(要求给出调度方案)(Backtracking algorithm for optimal scheduling problem There are n tasks to be done by K machines that can work in parallel, and the task I needs time to comp
回溯
- 一些回溯算法的总结里面有马跳日棋盘问题八皇后问题取苹果等一系列已过的代码谢谢参考(Some backtracking algorithms are summed up with a horse jump day chessboard problem eight queens and a series of past codes for reference.)
符号三角形的回溯算法
- 符号三角形的回溯算法是经典的算法。 在一般情况下,符号三角形的第一行有n个符号。符号三角形问题,要求对于给定的n,计算有多少个不同的符号三角形,使其所含的“+”和“-”相同。