搜索资源列表
c program6.rar
- 三色球问题 若有一个口袋放有12个球,其中有3个红的,3个白的和6个黑的,从中任取8个球, 问共 这也是一个可用穷举法求解的问题。 设任取的红球个数为i, 白球个数为 j,则黑球个数为8-i-j,用count统计不同的搭配数目
calc24.rar
- 自个写的一个穷举法算二十四点的小程序
KillWord
- word密码破解,速度比较慢,效率也不高,使用的是穷举法-word password crackers, the relatively slow speed, efficiency is not high, the law is exhaustive
组合加密软件包 Lock Manage 5
- Lock Manage 是一个功能比较全面的加密软件。 它具有多种加密方案:如文件口令加密,文件反拷贝加密,软硬盘加密,安装加密,文本加密,批处理加密等等。系统是由C和汇编写成,可从外部链接于主模块。可单独编译,单独调试。可执行EXE/COM程序加密模块已经过长时间的测试分析,其工作性能己十分稳定。可移植性与兼容性很好。另外,代码实现了CS,DS不换技术,使其SHELL性能难以被DEBUG识别。其内部密码采用单向不可逆变换,基本实现了不可解,原因在于四个随机密钥只能用穷举法找出。这种可靠原四密钥
the_ th
- 枚举法(穷举法) “笨人之法”: 把所有可能的情况一一测试,筛选出符合条件的各种结果进行输出。 【例一】百元买百鸡:用一百元钱买一百只鸡。已知公鸡5元/只,母鸡3元/只,小鸡1元/3只。 分析: 这是个不定方程——三元一次方程组问题(三个变量,两个方程) x+y+z=100 5x+3y+z/3=100 设公鸡为x-enumeration method (exhaustive) "Benren Regulation" : all po
求具有abcd=(ab+cd)2性质的四位数
- 3025这个数具有一种独特的性质:将它平分为二段,即30和25,使之相加后求平方,即(30+25)2,恰好等于3025本身。请求出具有这样性质的全部四位数。 *题目分析与算法设计 具有这种性质的四位数没有分布规律,可以采用穷举法,对所有四位数进行判断,从而筛选出符合这种性质的四位数。具体算法实现,可任取一个四位数,将其截为两部分,前两位为a,后两位为b,然后套用公式计算并判断。 -3025, the figure has a unique character : it divide
shh
- 人工智能学习中常见的四皇后问题的求解程序 ,此程序通过运用穷举法进行了求解-Artificial Intelligence Learning common four Queen's problem solving process, this procedure through the use of exhaustive method of solving
乘式还原
- A代表数字0到9中的前五个数字,Z代表后五个数字,请还原 下列乘式。 A Z A × A A Z ------------ A A A A A A Z Z Z A A ------------ Z A Z A A *问题分析与算法设计 问题本身并不复杂,可以对乘式中的每一位使用穷举法,最 终可以得到结果。本题的关键在于怎样有效的判断每个部分积的 每一位是否满足题意,这一问题处理不好,编写的程序会很长。
算数Factors
- 输入一个整数,计算这个数的所有因子。利用的是穷举法。-an integer input to calculate the number of all factors. Use Act is exhaustive.
codecnt_1024024
- 用于破解WINDOWS管理员口令的东西,密码穷举法。本程序是在单线程的基础上简单修改而得,未经严格测试,大家可以帮忙把该程序完善以下-for Windows administrators crack passwords things, the password exhaustive law. This procedure was threaded on the basis of simple changes derived, without rigorous testing, we can he
01knap_Dynamic_Programming
- 本文通过研究动态规划原理,提出了根据该原理解决0/1背包问题的方法与算法实现,并对算法的正确性作了验证.观察程序运行结果,发现基于动态规划的算法能够得到正确的决策方案且比穷举法有效.-through research paper on dynamic programming, According to the principle of resolving the 0 / 1 knapsack problem with the algorithm, the algorithm was verifi
穷举密码算法
- 穷举法解密文件-exhaustive France declassified document
穷举法数独
- 依据穷举法编写的数独游戏,互相交流 希望能帮助到大家
acute
- 穷举法程序-算法分析,是用C写的好经典,马克思手稿…………有三个程序! -Exhaustive method process- algorithm analysis, is to use C to write a good classic, Marx manuscr ipts ... ... ... ... There are three procedures!
qiongjufa
- 数学建模中常用的穷举法程序,具有一般性,非常实用-Mathematical modeling method commonly used in the exhaustive process, with the general, very useful
CrackSudoku
- 数独求解程序源代码,采用穷举法,无唯一解-Sudoku solver source code, using brute-force method, no unique solution
Commonalgorithms
- 一些常用的算法设计方法和C++环境下的实现方法。主要包括:迭代法、穷举搜、索法、递推法、递归、回溯法、贪婪法、分治法 -Some commonly used algorithm design methods and C environments are implemented. These mainly include: iterative method, exhaustive search, rope method, recursive method, recursion, backtra
fenxianxingguihuazhongdancunxingfaqiujizhideCyuyan
- 日常生活生产中有大量求极值的问题,一般计算机实现用穷举法或牛顿迭代法,但其计算量非常大。使用单纯形法可根据单纯形各个顶点的目标函数值,加以比较,丢掉其中最坏的点,代之以新点,。-Daily production of a large number of extremum problems, general computer implemented by the exhaustive method or Newton' s iterative method, but its calculat
使用穷举法并分别用for
- 使用穷举法并分别用for、while、do…while循环语句求出1..100之间的质数(Use the exhaustive method and use for, while, do, respectively. While loop statement is used to find the prime number between 1..100)
穷举法求解0-1整数规划的matlab程序
- 0-1整数规划有很广泛的应用背景,比如指派问题,背包问题等等,实际上TSP问题也是一个0-1问题,当然这些问题都是NP问题,对于规模较大的问题用穷举法是没有办法在可接受的时间内求得最优解的,本程序只不过是一个练习,得意之处是用递归法把所有解都排列出来。(0-1 integer programming has a very wide application background, such as assignment problem, knapsack problem and so on. In