您好,欢迎光临本网站![请登录][注册会员]  

搜索资源列表

  1. Skiena-The_Algorithm_Design_Manual.pdf

  2. 英文第二版 目录 . . . . . . . . . . . . . . . . . . . . . . . 50 2.8 War Story: Mystery of the Pyramids . . . . . . . . . . . . . . . . 51 2.9 Advanced Analysis (*) . . . . . . . . . . . . . . . . . . . . . . . . 54 2.10 Exercises . . . . . . . . . . . . .
  3. 所属分类:Java

    • 发布日期:2009-04-29
    • 文件大小:3145728
    • 提供者:arctgx
  1. Linux Appliance Design

  2. This book shows you how to build a Linux appliance, and it includes a prototype appliance that you can use as the basis for your appliance, if you wish. We divide an appliance into daemons and user interfaces and show how to create and manage daemon
  3. 所属分类:Linux

    • 发布日期:2009-05-30
    • 文件大小:8388608
    • 提供者:norsanjose
  1. The Divide-and-Conquer Strategy

  2. The Divide-and-Conquer Strategy
  3. 所属分类:其它

    • 发布日期:2010-07-26
    • 文件大小:608256
    • 提供者:kkvia
  1. 归并排序(Merge sort)(台灣譯作:合併排序)是建立在归并操作上的一种有效的排序算法。该算法是采用分治法(Divide and Conquer)的一个非常典型的应用。

  2. 归并排序(Merge sort)(台灣譯作:合併排序)是建立在归并操作上的一种有效的排序算法。该算法是采用分治法(Divide and Conquer)的一个非常典型的应用。
  3. 所属分类:其它

    • 发布日期:2010-11-17
    • 文件大小:1014784
    • 提供者:houkun1230
  1. a general method for solving divide and conquer recurrences

  2. a general method for solving divide and conquer recurrences
  3. 所属分类:其它

    • 发布日期:2011-01-09
    • 文件大小:467968
    • 提供者:mostovoi1234
  1. Finding Maximum Contiguous Subsequence Sum using divide-and-conquer approach

  2. Finding Maximum Contiguous Subsequence Sum using divide-and-conquer approach
  3. 所属分类:其它

    • 发布日期:2011-03-10
    • 文件大小:8192
    • 提供者:princess2011
  1. Divide into python中文版

  2. Divide into python中文版,有目录,文字和代码均可复制,学习python的好教程
  3. 所属分类:Python

    • 发布日期:2011-08-22
    • 文件大小:4194304
    • 提供者:tjlakewalker
  1. Verilog编写的除法模块(divide module)

  2. 这是用Verilog编写的除法模块(divide module),包括了divide程序设计模块和测试模块。
  3. 所属分类:硬件开发

    • 发布日期:2012-03-04
    • 文件大小:16384
    • 提供者:chengyangsg
  1. opencv Mat add divide 运算

  2. opencv 中关于 mat 矩阵的基本运算操作,有实例和注释,可以方便查看结果
  3. 所属分类:C++

    • 发布日期:2014-12-17
    • 文件大小:7340032
    • 提供者:u010141025
  1. 基于divide and conquer策略的Sutherland-Hodgman算法.txt

  2. 基于divide and conquer策略的Sutherland-Hodgman算法.txt
  3. 所属分类:讲义

    • 发布日期:2017-06-14
    • 文件大小:8192
    • 提供者:ljheee
  1. 九章算法之二叉树与分治法(Binary Tree & Divide Conquer)

  2. 九章算法之二叉树与分治法(Binary Tree & Divide Conquer) 多看多思考
  3. 所属分类:讲义

    • 发布日期:2019-01-10
    • 文件大小:327680
    • 提供者:quantbaby
  1. Divide and Conquer, Sorting and Searching, and Randomized Algorithms python 版答案

  2. 斯坦福algorithm part1 Divide and Conquer, Sorting and Searching, and Randomized Algorithms python 版答案
  3. 所属分类:讲义

    • 发布日期:2019-04-07
    • 文件大小:256000
    • 提供者:qq_36145163
  1. 分库分表Sharding中间件Kamike.divide.zip

  2. 开源个人参考淘宝的TDDL分库分表思路写的一个分库分表中间件Kamike.divide. 分库分表这个是8月份左右跟淘宝的数据分析部门的架构师离哲交流的时候产生的想法,离哲推荐采用TDDL进行分库分表。 回去一看,却发现TDDL只开源了一半,开源的那一半基本没法使用,所以只能自己写一个Sharding了。 前几天发布了kamike.db>这个ORM中间件,这几天就把我之前写的分库分表功能裁剪一下,然后基于kamike.db进行重构。 现在发布一个基本算法实现完毕的版本,模拟了jdbc的操
  3. 所属分类:其它

    • 发布日期:2019-07-19
    • 文件大小:89088
    • 提供者:weixin_39840515
  1. python ceiling divide 除法向上取整(或小数向上取整)的实例

  2. 今天小编就为大家分享一篇python ceiling divide 除法向上取整 (或小数向上取整)的实例,具有很好的参考价值,希望对大家有所帮助。一起跟随小编过来看看吧
  3. 所属分类:其它

    • 发布日期:2020-09-18
    • 文件大小:25600
    • 提供者:weixin_38732252
  1. Tree and Divide Conquer

  2. title: Tree and Divide Conquer date: 2020-03-24 20:11:09 tags: Algorithm Tree and Divide Conquer 最近做二叉树相关的题,被递归搞的晕头转向。 文章目录Tree and Divide Conquer一、树的性质Divide and Conquer模版114 Flatten Binary Tree to Linked List1)从最简单的case开始2)一般case3) merge总结 一、树的性质
  3. 所属分类:其它

    • 发布日期:2020-12-21
    • 文件大小:51200
    • 提供者:weixin_38559646
  1. Divide-and-conquer-源码

  2. Divide-and-conquer
  3. 所属分类:其它

    • 发布日期:2021-03-15
    • 文件大小:5120
    • 提供者:weixin_42097533
  1. divide-e-源码

  2. 分频器 项目设置 npm install 编译和热重装以进行开发 npm run serve 编译并最小化生产 npm run build 自定义配置 请参阅。
  3. 所属分类:其它

    • 发布日期:2021-03-07
    • 文件大小:3145728
    • 提供者:weixin_42151305
  1. Divide-and-Conquer-Problem-Solving-源码

  2. Divide-and-Conquer-Problem-Solving
  3. 所属分类:其它

    • 发布日期:2021-03-05
    • 文件大小:2048
    • 提供者:weixin_42134038
  1. A divide and conquer-based greedy search for two-machine no-wait job shop problems with makespan minimisation

  2. This paper addresses a two-machine no-wait job shop problem with makespan minimisation. It is well known that this problem is strongly NP-hard. A divide-and-conquer approach (DC for short) is adopted to calculate the optimal timetable of a given sequ
  3. 所属分类:其它

    • 发布日期:2021-02-21
    • 文件大小:1048576
    • 提供者:weixin_38671048
  1. python ceiling divide 除法向上取整(或小数向上取整)的实例

  2. 向上取整的方法: 方法1: items = 102 boxsize = 10 num_boxes = (items + boxsize - 1) // boxsize 方法2: >>> -(-102 // 10) 11 方法3(浮点数向上取整): from math import ceil print(ceil(10.3)) 11 或 import math math.ceil( x ) 以上这篇python ceiling divide 除法向上取整(或小数向上取整)
  3. 所属分类:其它

    • 发布日期:2021-01-20
    • 文件大小:24576
    • 提供者:weixin_38513565
« 12 3 4 5 6 7 8 9 10 ... 19 »