搜索资源列表
N皇后问题回溯算法
- 皇后问题的拓展 经典算法-Queen expand the classical algorithm
0-1背包的回溯算法
- 回溯法解决0-1背包问题-Backtracking 0-1 knapsack problem solving
用回溯算法设计的迷宫
- 迷宫 用回溯算法设计的迷宫---各种回溯方法!回溯!回溯!-Maze solved by different backtrace algorithms!Backtrace!Backtrace!
利用回溯算法数独游戏解算C++代码
- 利用回溯算法数独游戏解算C++代码,能够较快的求解出数独问题,The use of backtracking algorithm solving sudoku C++ code, can be faster to solve a sudoku problem
Desktop
- 调度问题的回溯算法,算法中的经典问题。问题描述:假设有n个任务由k个可并行工作的机器完成。完成任务i需要的时间为ti。试设计一个算法找出完成这n个任务的最佳调度,使得完成全部任务的时间最早。-Scheduling problem backtracking algorithm is the classic problem. Problem Descr iption: Suppose there are n-task by the k-parallel machine can be complete
8quene
- 暴力算法和回溯算法求解8皇后问题,图像化界面-Violence algorithm and backtracking algorithm 8 Queen
bahuanhou
- 八皇后问题是一个古老而著名的问题,是回溯算法的典型例题。该问题是十九世纪著名的数学家高斯1850年提出:在8X8格的国际象棋上摆放八个皇后,使其不能互相攻击,即任意两个皇后都不能处于同一行、同一列或同一斜线上,问有多少-8 Queen
TwoSolutionOfHoureTour
- 马周游问题的两种解法 对于小规模的作回溯,大规模的进行A算法-Two horses travel problem solution for the small-scale retrospective, the conduct of large-scale algorithm A
Queen8
- 经典八皇后回溯算法实现,希望能帮助你的学习-Queen 8
BestSchedule
- BestSchedule,最佳调度问题的回溯算法,c++实现。 -BestSchedule, the best scheduling algorithm back, c++ to achieve.
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
computer_classical_arithmetic
- 该文件主要为分治策略、概率算法、回溯算法、枚举法、模拟退火算法、排序算法、搜索算法、贪心算法、遗传算法、蚁群算法的介绍及实现方式-The document mainly divide and conquer, probabilistic algorithms, backtracking algorithm, enumeration method, simulated annealing algorithm, sorting algorithm, search algorithm, greedy
回溯算法实验八皇后问题
- 利用回溯算法求解N皇后问题,理解求解流程和搜索顺序(Backtracking algorithm used to solve the N queen problem, understand the flow of the solution and search order)
Viterb译码器回溯算法实现研究
- Viterbi译码实现的回溯算法,值得实现人员学习,算法人员参考(Viterbi decoding algorithm to achieve backtracking, it is necessary to achieve personnel learning, algorithm reference)
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.)
回溯法
- 利用回溯算法和动态规划函数,编写了资源约束下的二维动态规划算法,可用于资源分配方面的问题(Using backtracking algorithm and dynamic programming function, we write a two-dimensional dynamic programming algorithm under resource constraints, which can be used for resource allocation)
回溯算法解决8皇后问题
- 利用回溯算法计算8皇后问题,计算出最终方案(A backtracking algorithm is used to calculate the 8 Queens, and the final scheme is calculated.)
符号三角形的回溯算法
- 符号三角形的回溯算法是经典的算法。 在一般情况下,符号三角形的第一行有n个符号。符号三角形问题,要求对于给定的n,计算有多少个不同的符号三角形,使其所含的“+”和“-”相同。