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

搜索资源列表

  1. structures-and-algorithm-analysis

    0下载:
  2. 数据结构经典问题和算法分析如迭代法、穷举搜索法等-Classic problem in data structures and algorithm analysis, such as iterative, exhaustive search method
  3. 所属分类:Data structs

    • 发布日期:2017-03-24
    • 文件大小:159207
    • 提供者:李有
  1. tsp

    0下载:
  2. matlab解决tsp问题,穷举法,不错的-matlab tsp, that is good
  3. 所属分类:matlab

    • 发布日期:2017-04-04
    • 文件大小:4342
    • 提供者:saf
  1. C_arithmetic_confluence

    0下载:
  2. 此文件为C算法的集合,里面包含有排序、搜索、穷举、约瑟夫环、八皇后问题的算法,对于编程有很大的参考价值-This document is a collection of C algorithm, which includes sorting, searching, exhaustive, Josephus, the eight queens problem algorithm, the programmer has great reference value
  3. 所属分类:Data structs

    • 发布日期:2017-05-02
    • 文件大小:959920
    • 提供者:mcs
  1. qishixunyou

    0下载:
  2. 国际象棋棋盘的骑士巡游问题,深度优先,穷举搜索-Chessboard knight tour problem, depth first, exhaustive search
  3. 所属分类:Chess Poker games

    • 发布日期:2017-04-04
    • 文件大小:769456
    • 提供者:znt
  1. TSP

    0下载:
  2. 用遗传算法、贪心算法以及穷举法对TSP问题进行求解-Genetic algorithm, the greedy algorithm and the brute-force method to solve the TSP problem
  3. 所属分类:AI-NN-PR

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

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

    • 发布日期:2017-05-02
    • 文件大小:688128
    • 提供者:孔明德
  1. 基于压缩感知的信号重构算法

    0下载:
  2. Candes等证明了信号重建问题可以通过求解最小 范数问题解决,但Donoho指出,求解最小 范数是一个NP问题,需要穷举 中非零值的所有 中排列可能,因而无法直接求解。此后,研究人员提出了一系列求得次最优解的算法,主要包括最小 范数法、贪婪迭代匹配追踪系列算法等。
  3. 所属分类:文档资料

  1. ETS

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

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

    0下载:
  2. 神奇24游戏的玩法是,由计算机随机产生4个自然数,玩家利用加减乘除和加括号,将4个数组成结果等于24的四则运算算式。在大多数情况下这个问题都有解,这就是“神奇”所在之处。通常的解法都是采用穷举法,对所有可能的算式进行求解,然后判断结果是不是24。问题的难点在于如何生成这所有的算式,由于括号的缘故,使问题变得复杂了。一种办法是将中缀表达式转化为后缀表达式,转入对后缀表达式的分析。由于后缀表达式的特点,后缀表达式的分析和求解都比较容易实现,这样就简化了问题的求解。-The magic 24 game
  3. 所属分类:Chess Poker games

    • 发布日期:2017-11-29
    • 文件大小:19650
    • 提供者:lk
  1. Matching-the-bride-and-groom

    0下载:
  2. 新郎新娘配对问题,采用穷举法,实现新郎新娘的配对-The bride and groom pairing, the brute-force method, the pairing of the bride and groom
  3. 所属分类:Other Riddle games

    • 发布日期:2017-12-08
    • 文件大小:8272
    • 提供者:刘洋
  1. ban-zhuan

    0下载:
  2. 用穷举法解决以下问题:36块砖,36人搬,男搬4,女搬3,两个小孩抬1砖。要求一次全搬完,问男、女、小孩有多少?-The brute-force method to solve the following problem: 36 bricks, 36 people move, the men moved 4 female moved two children lift a brick. Require full-time to move those, ask men and women, how
  3. 所属分类:Java Develop

    • 发布日期:2017-11-01
    • 文件大小:2930
    • 提供者:李筱枫
  1. 24DIAN

    0下载:
  2. 24点穷举法的运用 用C语言解决24点的计算问题-The 24-point brute-force method to use C language to solve computational problems in 24 points
  3. 所属分类:Data structs

    • 发布日期:2017-12-01
    • 文件大小:1995
    • 提供者:龚景荣
  1. qiongjufa

    0下载:
  2. 一. 用穷举法求解下列问题。 1.班上要在A, B, C, D, E, F 6名同学中选派若干人去参加比赛,综合比较各人的情况,得出选择的条件如下: a) E和F两人中至少去一个; b) C和D两人中去一个; c) D和E要么都去,要么都不去; d) A,B,F三人中要去两个; e) 若C不去,则B也不去; f) C和F不能一起去。 请仔细分析上述条件,找出参加比赛的合适人选。 -A. Using brute-force method to solve the
  3. 所属分类:assembly language

    • 发布日期:2017-11-18
    • 文件大小:575
    • 提供者:长城
  1. bestld

    0下载:
  2. 通过模拟出一些坐标点 利用穷举法完成最短路径的小型tsp问题的解决方案 为最优解-By simulating some coordinates using the brute-force method to complete the shortest path problem for small tsp solution for the optimal solution
  3. 所属分类:Algorithm

    • 发布日期:2017-05-10
    • 文件大小:2285396
    • 提供者:smallyou
  1. dianlu

    1下载:
  2. 电路布线问题 【问题描述】 印刷电路板将布线区域划分为n╳n个方格阵列。在布线时,电路只能沿直线或直角布线。为避免线路相交,已布线的方格要做封锁标记。设起始位置为a,终止位置为b,求解电路布线问题。 【设计要求】 设计印刷电路板的布线模拟程序。 (1)采用栈或队列等数据结构。 (2)采用穷举法的回溯搜索,求a到b可能的布线线路。 (3)推荐采用层次优先搜索,求a到b最优的布线线路。 -Circuit wiring problem [Problem Descr ip
  3. 所属分类:assembly language

    • 发布日期:2016-05-25
    • 文件大小:37888
    • 提供者:张小红
  1. matlabxuexi

    0下载:
  2. 这是一个好的建模学习资料,赶快下载吧, 数学建模十大算法 ( 包含:蒙特卡罗算法、数据拟合、参数估计、 插值等数据处理算法、线性规划、整数规划、多元规划、二次规划等规划类问题、 图论算法、动态规划、回溯搜索、分治算法、分支定界等计算机算法、 最优化理论的三大非经典算法:模拟退火法、神经网络、遗传算法、 网格算法和穷举法、一些连续离散化方法、数值分析算法、图象处理算法)-This is a good model to study the information, download it quick
  3. 所属分类:matlab

    • 发布日期:2017-05-18
    • 文件大小:4994150
    • 提供者:高雄飞
  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. 1

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

    • 发布日期:2017-04-05
    • 文件大小:6049
    • 提供者:秦雪梅
  1. J_Grid15

    0下载:
  2. 运用穷举法求解1-9,3*3数独问题,即使每行每列及对角线上的之和为15,算法简单,但运算时间有点长,大概是五分钟左右,请耐心等待。-Using exhaustive method to solve 1-9, 3*3 Sudoku problem, even if each row and each column and on the diagonal and 15, simple algorithm, but the operation time is long, about five min
  3. 所属分类:JavaScript

    • 发布日期:2017-04-09
    • 文件大小:4078
    • 提供者:郭松云
  1. shortest-route-problem

    0下载:
  2. 最短路径问题的四种实现方式:广度优先、深度优先、贪心法、动态规划法、穷举法、回溯法。-Four ways to achieve the shortest path problem breadth priority greedy depth-first dynamic programming method exhaustive backtracking
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-04-16
    • 文件大小:28428
    • 提供者:shuaidan
« 1 2 3 45 »
搜珍网 www.dssz.com