搜索资源列表
c program6.rar
- 三色球问题 若有一个口袋放有12个球,其中有3个红的,3个白的和6个黑的,从中任取8个球, 问共 这也是一个可用穷举法求解的问题。 设任取的红球个数为i, 白球个数为 j,则黑球个数为8-i-j,用count统计不同的搭配数目
HackIMUT
- 我们学校的选课系统(http://202.207.16.59)真气人啊,我还没接到通知呢,别人就把选修课都选满了,选不到我心爱的选修课,怎么办? 为了解决这个问题,我特意编写了这个玩艺,因为很多人都没有改默认密码(默认密码就是学号),所以我就可以利用穷举搜索出大部分人都选的什么课,然后。。。。呵呵。。。就参考一下。 估计大家下到这个软件的时候,学校就应该有反应了,也许软件会失效,但是,可以参考一下里面的代码,也许稍微改改,就能适
the_ th
- 枚举法(穷举法) “笨人之法”: 把所有可能的情况一一测试,筛选出符合条件的各种结果进行输出。 【例一】百元买百鸡:用一百元钱买一百只鸡。已知公鸡5元/只,母鸡3元/只,小鸡1元/3只。 分析: 这是个不定方程——三元一次方程组问题(三个变量,两个方程) x+y+z=100 5x+3y+z/3=100 设公鸡为x-enumeration method (exhaustive) "Be
shh
- 人工智能学习中常见的四皇后问题的求解程序 ,此程序通过运用穷举法进行了求解-Artificial Intelligence Learning common four Queen's problem solving process, this procedure through the use of exhaustive method of solving
减式还原
- 编写程序求解下式中各字母所代表的数字,不同的字母代表 不同的数字。 PEAR - ARA -------- PEA *问题分析与算法设计 类似的问题从计算机算法的角度来说是比较简单的,可以采 用最常见的穷举方法解决。程序中采用循环穷举每个字母所可能 代表的数字,然后将字母代表的数字转换为相应的整数,代入算 式后验证算式是否成立即可解决问题。-prepared un
八皇后问题
- 此程序以“穷举法”来解八皇后问题-this procedure "exhaustive" solution to the problem eight Queen's
穷举算法
- 在许多情况下我们需要穷举组合的算法,比如密码词典。这个算法的关键是密码下标进位的问题。另外本例子中的写文件语句效率比较低,为了降低算法复杂度没有优化。如果要提高写文件的效率,可以使用缓冲区,分批写入。-in many cases we need exhaustive combination of algorithms such as password dictionary. The algorithm is the key indice
子集和问题
- 子集和问题.rar:这是我学算法设计时的总结,包括定长和不定长做法(也就是回朔法,剪枝限界),当然也包括穷举法.-subset and problems. Rar : This is my learning algorithm design at the conclusion, including fixed-length and variable length approach (that is, back to Schomburg,
八皇后问题
- 此程序以“穷举法”来解八皇后问题-this procedure "exhaustive" solution to the problem eight Queen's
穷举算法
- 在许多情况下我们需要穷举组合的算法,比如密码词典。这个算法的关键是密码下标进位的问题。另外本例子中的写文件语句效率比较低,为了降低算法复杂度没有优化。如果要提高写文件的效率,可以使用缓冲区,分批写入。-in many cases we need exhaustive combination of algorithms such as password dictionary. The algorithm is the key indice
子集和问题
- 子集和问题.rar:这是我学算法设计时的总结,包括定长和不定长做法(也就是回朔法,剪枝限界),当然也包括穷举法.-subset and problems. Rar : This is my learning algorithm design at the conclusion, including fixed-length and variable length approach (that is, back to Schomburg,
ClosestNodePairs
- 这是最接近点对问题,分别使用了分治算法和穷举法求解最接近点对。-it is the closest point of the problem, namely the use of a divide-and-conquer method and exhaustive closest point right.
0-1programming
- 0-1整数规划有很广泛的应用背景,比如指派问题,背包问题等等,实际上TSP问题也是一个0-1问题,当然这些问题都是NP问题,对于规模较大的问题用穷举法是没有办法在可接受的时间内求得最优解的,本程序只不过是一个练习,得意之处是用递归法把所有解都排列出来。另:胡运权所著的《运筹学基础及应用(第三版)》第97页的例3,我用本程序求解得到的结果是:最优解是x*=(1,0, 0, 0, 0),最优值是f(x*)=8,但书求得最优解是x*=(1,0
suanfa1
- 穷举搜索法是对可能是解的众多候选解按某种顺序进行逐一枚举和检验,并从众找出那些符合要求的候选解作为问题的解。 -Exhaustive search method may be the solution of the many candidate solutions one by one according to some order of enumeration and testing, and conformity to iden
migong
- VC实现迷宫问题,用穷举法找出一条路径,用递归形式的算法求得迷宫中所有可能的通路,以方阵形式输出迷宫及其通路. -VC to achieve maze problems,and use brute-force method to find a path,using the recursive form of algorithm to seek all possible paths in the maze in order to f
sweep
- 应用简单的穷举算法解决遍历所有点距离最短的问题-Exhaustive algorithm to solve the problem through all of the shortest distance
Job-sorting-problem
- 作业排序问题,解决作业排序过程中作业顺序穷举问题的程序-Job sorting problem exhaustively program
KnapSack2
- 0/1背包问题 利用的子集树,进行穷举算法实现(0/1 knapsack exhaustive problem)
穷举n位二进制数
- 输入一个小于20的正整数n,要求按从小到大的顺序输出所有的n位二进制数,每个数占一行。(Enter a positive integer that is less than 20, and you want to output all of the n-bit binary Numbers in the order of small to large, each of which is a row.)
穷举法求解0-1整数规划的matlab程序
- 0-1整数规划有很广泛的应用背景,比如指派问题,背包问题等等,实际上TSP问题也是一个0-1问题,当然这些问题都是NP问题,对于规模较大的问题用穷举法是没有办法在可接受的时间内求得最优解的,本程序只不过是一个练习,得意之处是用递归法把所有解都排列出来。(0-1 integer programming has a very wide application background, such as assignment problem, k