CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 Windows编程 搜索资源 - 穷举问题

搜索资源列表

  1. the_ th

    0下载:
  2. 枚举法(穷举法) “笨人之法”: 把所有可能的情况一一测试,筛选出符合条件的各种结果进行输出。 【例一】百元买百鸡:用一百元钱买一百只鸡。已知公鸡5元/只,母鸡3元/只,小鸡1元/3只。 分析: 这是个不定方程——三元一次方程组问题(三个变量,两个方程) x+y+z=100 5x+3y+z/3=100 设公鸡为x-enumeration method (exhaustive) "Benren Regulation" : all po
  3. 所属分类:工具条

    • 发布日期:2008-10-13
    • 文件大小:559589
    • 提供者:林林
  1. gggggggggggggggggggggggggggggg

    0下载:
  2. 假定穷举法攻击有效的话,那么即使设计一种每秒种可以试验10亿个密钥的专用芯片,并将10亿片这样的芯片用于此项工作, 仍需1013年才能解决问题;另一方面,若用1024片这样的芯片,有可能在一天内找到密钥,不过人们还无法找到足够的硅原子来 制造这样一台机器。 -assumed exhaustive law effective attack, then even the design of a second species can test one billion Key ASIC, a
  3. 所属分类:通讯编程

    • 发布日期:2008-10-13
    • 文件大小:4104
    • 提供者:顾惠军
  1. EightQueens.rar

    0下载:
  2. 一个用来研究八皇后问题的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
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-28
    • 文件大小:8904
    • 提供者:zbl
  1. src

    0下载:
  2. 商人过河问题是数学建模中的一个经典问题,程序利用链表存储渡河状态,使用穷举的算法实现。该算法会找出N个商人/随从渡河的一个可行方案,但并不保证是最佳方案。写完这个程序后让我想到的居然是图的深度优先搜索,二者在查找的思想上是类似的。-Merchants across the river mathematical modeling problem is a classic problem, the use of list storage procedures to cross the river,
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-27
    • 文件大小:1979
    • 提供者:piit
  1. createpassword

    0下载:
  2. 在许多情况下我们需要穷举组合的算法,比如密码词典。 //这个算法的关键是密码下标进位的问题。 //另外本例子中的写文件语句效率比较低,为了降低算法复杂度没有优化。 如果要提高写文件的效率,可以使用缓冲区,分批写入。 -In many cases we need to exhaustive combinations of algorithms, such as the password dictionary.// This algorithm, the key is passwor
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-12
    • 文件大小:921
    • 提供者:王文娟
  1. bxjdd

    0下载:
  2. 解决了并行机调度问题,本题采用穷举法与随机法相结合的方法求解,可取得最优解。-Solve the parallel machine scheduling problem, the problem using exhaustive method, the optimal solution can be achieved.
  3. 所属分类:CSharp

    • 发布日期:2017-03-29
    • 文件大小:720
    • 提供者:langlang
  1. NearestPoints

    0下载:
  2. 分别利用分治法及穷举法求解最近点对问题,输出查找结果及比较次数。-Use, respectively, sub-rule method and brute-force method for solving the nearest point of the problem, the output and compare the number of search results.
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-05
    • 文件大小:2534
    • 提供者:yushu
  1. migong

    0下载:
  2. 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 form the output matrix and the
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-02
    • 文件大小:167751
    • 提供者:mfw
  1. ExhaustivePasswordAlgorithm

    0下载:
  2. 穷举密码算法的实现,利用穷举法能够实现三位以内的密码破解问题。-Exhaustive Password Algorithm
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-10
    • 文件大小:675
    • 提供者:石振
  1. Businessmen

    0下载:
  2. 商人过河问题是数学建模中的一个经典问题,程序利用链表存储渡河状态,使用穷举的算法实现。该算法会找出N个商人/随从渡河的一个可行方案,但并不保证是最佳方案。-Businessmen river problem is Mathematical Modeling a classic problem, procedures use linked list storage crossing state, use exhaustive s algorithm. The algorithm will iden
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-05
    • 文件大小:1716
    • 提供者:纪伟
  1. vb_code

    0下载:
  2. VB程序实现三个商人带三个奴隶过河问题,穷举算法实现商人安全过河-shang ren guo he wen ti
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-01
    • 文件大小:1338
    • 提供者:12
  1. sr

    0下载:
  2. 商人过河问题是数学建模中的一个经典问题,程序利用链表存储渡河状态,使用穷举的算法实现。该算法会找出N个商人/随从渡河的一个可行方案,但并不保证是最佳方案。写完这个程序后让我想到的居然是图的深度优先搜索,二者在查找的思想上是类似的。3gpp的文件-Merchants across the river in the mathematical modeling problem is a classic problem, the program list storage to cross the riv
  3. 所属分类:Multimedia Develop

    • 发布日期:2017-04-12
    • 文件大小:1711
    • 提供者:nani
  1. sr

    0下载:
  2. 商人过河问题是数学建模中的一个经典问题,程序利用链表存储渡河状态,使用穷举的算法实现。该算法会找出N个商人/随从渡河的一个可行方案,但并不保证是最佳方案。写完这个程序后让我想到的居然是图的深度优先搜索,二者在查找的思想上是类似的。-Mathematical modeling business across the river in question is a classic problem, the program memory to cross the river using the stat
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-08
    • 文件大小:1707
    • 提供者:周华漫
  1. 01beibaowenti-qiongjufa

    0下载:
  2. 穷举法解决背包问题,对解决算法问题有帮助-The brute-force method to solve the knapsack problem to solve algorithmic problems
  3. 所属分类:Other systems

    • 发布日期:2017-05-01
    • 文件大小:688128
    • 提供者:孔明德
  1. ETS

    0下载:
  2. 本文是一种穷举方法,旅行员推销问题的实现算法!-This article is a brute-force method, Travel member marketing realization algorithm!
  3. 所属分类:Other systems

    • 发布日期:2017-11-22
    • 文件大小:1126
    • 提供者:高飞
  1. bag

    0下载:
  2. 这是求背包问题的一个程序,主要用了递归穷举的思想,希望可以帮到大家-This is a program seeking knapsack problem, the main idea of ​ ​ using a recursive exhaustive, I hope you can help
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-10
    • 文件大小:1024
    • 提供者:madil
  1. 1101

    0下载:
  2. 用穷举法解决以下问题:36块砖,36人搬,男搬4,女搬3,两个小孩抬1砖。要求一次全搬完,问男、女、小孩有多少?-Exhaustive method used to solve the following problem: 36 bricks, 36 people move, move 4 male, 3 female move, two children carrying a brick. Requires a full move those asked men, women and chil
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-04-14
    • 文件大小:6167
    • 提供者:sejrkte
  1. 1101

    0下载:
  2. 用穷举法解决以下问题:36块砖,36人搬,男搬4,女搬3,两个小孩抬1砖。要求一次全搬完,问男、女、小孩有多少?-Exhaustive method used to solve the following problem: 36 bricks, 36 people move, move 4 male, 3 female move, two children carrying a brick. Requires a full move those asked men, women and chil
  3. 所属分类:GDI-Bitmap

    • 发布日期:2017-04-14
    • 文件大小:6213
    • 提供者:sertkte
  1. TSP

    2下载:
  2. 用穷举法解决TSP问题,有文档,有注释,适合新手学习-Solve TSP problem by brute-force method, there are documents, notes, suitable for beginners to learn
  3. 所属分类:Other windows programs

    • 发布日期:2015-04-10
    • 文件大小:30720
    • 提供者:李卫巍
  1. KnapSack2

    0下载:
  2. 0/1背包问题 利用的子集树,进行穷举算法实现(0/1 knapsack exhaustive problem)
  3. 所属分类:其他

    • 发布日期:2017-12-28
    • 文件大小:66560
    • 提供者:南笙123
« 12 »
搜珍网 www.dssz.com