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

搜索资源列表

  1. Cpair

    0下载:
  2. 最近点对算法,穷举法证明算法的正确性,可供学习和参考-Nearest point of the algorithm, exhaustive method to prove the correctness of algorithms for learning and reference
  3. 所属分类:Data structs

    • 发布日期:2017-05-03
    • 文件大小:618138
    • 提供者:孟淇
  1. UnlockerAccessDatabase

    0下载:
  2. VB编程破解Access 数据库的密码,程序是利用穷举法进行破解的,比较好用,有兴趣的试一下。-VB Programming crack Access database password, the program is to use brute-force method to break relatively easy to use, are interested in a try.
  3. 所属分类:Other windows programs

    • 发布日期:2017-03-29
    • 文件大小:6418
    • 提供者:730
  1. algorithm

    0下载:
  2. 这么个思路:首先通过提取系统时间和运行时间作为加密算式的动态参数进行文件加密,然后将这些参数以及密码和是否加密的标志加密加载到文件中(不然就解密不了文件了),最后在解密的话,就是通过一定得方法提取这些参数,将其解密。 由于这些参数是动态变化的,所以每次对同一个文件进行加密后的结果都是不一样的,这样的话对于破解者来说就没有规律可循了。 这种加密法就是一个对称密码,很难用穷举法破解(虽然我没有试过),但是跟金老师上课讲的那些对称密码像DES,是没的比的,那些事可以公开算法的,而这个算法
  3. 所属分类:Crypt_Decrypt algrithms

    • 发布日期:2017-05-08
    • 文件大小:1906303
    • 提供者:Aaron
  1. traceback1

    0下载:
  2. c# 0-1背包 穷举法,绝对正确,已经通过测试。-this is beibao。it s very good,trust me!
  3. 所属分类:Data structs

    • 发布日期:2017-04-14
    • 文件大小:2612
    • 提供者:libyou
  1. The_allocation_of_project_funds

    1下载:
  2. 1. 脚本文件c11-用动态规划方法解决作业2(项目资金分配问题); 2. 脚本文件c21-用穷举法解决作业2(项目资金分配问题); 3. 函数文件remoney-用动态规划方法解决作业2(项目资金分配问题); 4. 函数文件qremoney-用动态规划方法解决作业2(项目资金分配问题); 5. 数据文件dataptime-存储函数需要调用的数据; 6. test-测试函数功能; -1. C11-used scr ipt files to solve the dynam
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-03-31
    • 文件大小:6341
    • 提供者:jianhuago
  1. boxgame

    0下载:
  2. 用MATLAB求解推箱子智力游戏问题,将推箱子的图看做矩阵,利用穷举法求解,对于一般的简单图很有效。-Use MATLAB to solve Sokoban puzzle problem, Sokoban graph as matrix, using brute-force solution, a simple graph in general is very effective.
  3. 所属分类:Other Riddle games

    • 发布日期:2017-03-26
    • 文件大小:3785
    • 提供者:Tom
  1. shuixianshu

    0下载:
  2. 一个用穷举法计算水仙数的小程序,效率不算好,望高人指点-Narcissus by an exhaustive method to calculate the number of small programs, efficiency is not good, hope receive adequate guidance
  3. 所属分类:Algorithm

    • 发布日期:2017-04-07
    • 文件大小:5845
    • 提供者:ducky
  1. bob(release)

    0下载:
  2. 除实现windows扫雷的基本功能之外加入以下两个特殊功能: (1)see through: 查看雷的位置。 (2)inference: 开启自动推理提示 (由穷举法产生的最佳推理): 红色:必定有雷 绿色:必定无雷 蓝色:无法推断 -In addition to achieving the basic functions of windows outside the mine by adding the following two special
  3. 所属分类:Java Develop

    • 发布日期:2017-04-03
    • 文件大小:15554
    • 提供者:lhl
  1. integerprogramming

    1下载:
  2. 用matlab编写的整数规划的程序。包括:用割平面法求解整数规划,用分支定界法求解整数规划,用枚举法(包括穷举法和隐枚举法)求解0-1规划-integer programming
  3. 所属分类:matlab

    • 发布日期:2017-04-01
    • 文件大小:2582
    • 提供者:wangjin
  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-06
    • 文件大小:2534
    • 提供者:yushu
  1. Nearest

    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. 所属分类:Data structs

    • 发布日期:2017-03-30
    • 文件大小:5035
    • 提供者:yushu
  1. c-code

    0下载:
  2. c语言经典代码,包括:打印图案 ,大小写字母的互换 整数因子 /*请编写一程序完成下面的功能:从键盘上任意上任意输入一个大于0且小于1000的整数,然后输出此整数的所有整数因子。如输入12,则输入1,2,3,4,6,12。*/ 插入后自动排序 /*原题:把一个整数插入到按由小到大排列的数列中,插入后仍然保持由小到大的顺序排列*/ /*指针,穷举法进行比较交换*/ 求数列 /*原题:已知一正整数递增等差数列,前5项之和为25,前5项之积为945,根据以上条件,请编写
  3. 所属分类:Data structs

    • 发布日期:2017-03-29
    • 文件大小:1239
    • 提供者:wangyicai
  1. qiongqufa

    0下载:
  2. 穷举法。整钱零找的算法 例如100元可以换出几个10元 几个20元 几个5元-Brute force attack. The whole zero-finding algorithm such as money, 100 yuan to 10 yuan for a few number of 20 yuan a few 5 yuan
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-03
    • 文件大小:2473
    • 提供者:张超
  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-03
    • 文件大小:167751
    • 提供者:mfw
  1. ExhaustivePasswordAlgorithm

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

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

    0下载:
  2. 实现以ABCAB*A=DDDDDD的算法,对于穷举法学习有一定的帮助,可以-The realization of ABCAB* A = DDDDDD of algorithms for the exhaustive method be helpful to learn, you can see
  3. 所属分类:Java Develop

    • 发布日期:2017-03-25
    • 文件大小:7513
    • 提供者:yunfei
  1. vbFRMNET

    0下载:
  2. 一款局域网网络密码探测器,可探测局域网工作站上的共享目录密码,本程序旨在说明原理,因此界面做的比较简,有兴趣的网友可自行完善。本程序主要采用穷举法,从1位至8位,对于简单密码例如: aa , ab, bb 可很快探测到,否则程序运行时间会很长,比较长的密码例如8位可能需要几天的时间;可以再进行一些优化处理.例如只探测字母,只探测数字,探测字母与数字,从几位密码开始探测等。-A LAN network password detector, can detect the shared directo
  3. 所属分类:Remote Control

    • 发布日期:2017-04-01
    • 文件大小:6032
    • 提供者:
  1. fun

    0下载:
  2. 穷举法入门,软件破解,windows下运行,不能错过哦-Exhaustive method entry, software crack, windows to run, can not miss oh 1
  3. 所属分类:Other systems

    • 发布日期:2017-04-16
    • 文件大小:80179
    • 提供者:long
  1. TSP

    0下载:
  2. 用穷举法和模拟退火方法实现了求解tsp问题-With exhaustion and simulated annealing method for solving TSP problem
  3. 所属分类:Java Develop

    • 发布日期:2017-03-29
    • 文件大小:5487
    • 提供者:姚灵灵
  1. emailcrk

    0下载:
  2. 穷举法破解邮件密码,vc++源码,测试能用-E-mail password crack brute-force method, vc++ source code, test can be used
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-28
    • 文件大小:38616
    • 提供者:wwe
« 1 2 3 45 6 7 8 »
搜珍网 www.dssz.com