Go To English Version 超过100万源码资源,1000万源码文件免费下载
  • 算法导论_英文第三版 ... algorithms 29 3 Growth of Functions 43 3.1 Asymptotic notation 43 3.2 Standard notations and common functions 53 4 Divide-and-Conquer 65 4.1 The maximum-subarray problem 68 4.2 Strassen’s algorithm for matrix multiplication 75 4.3 The substitution method ...
  • Matrix Computations ... dominance (§4. 1 . 1 ) , recursive block structures (§4.2. 10), band matrix inverse properties (§4.3.8) , divide-and-conquer strategies for block tridiagonal systems (§4.5.4) , the cross product and various point/plane least squares problems ( §5.3.9) , ...
  • Hadoop in Practice 2nd Edition-Manning-2014 SUMMARY Hadoop in Practice, Second Edition provides over 100 tested, instantly useful techniques that will help you conquer big data, using Hadoop. This revised new edition covers changes and new features in the Hadoop core architecture, including ...
  • 数据结构算法与应用 ... Chapter 15 Balanced Search Trees Chapter 16 Graphs Chapter 17 The Greedy Method Chapter 18 Divide and Conquer Chapter 19 Dynamic Programming Chapter 20 Backtracking Chapter 21 Branch and Bound
  • Hadoop in Practice(Manning,2ed,2014) Hadoop in Practice, Second Edition provides over 100 tested, instantly useful techniques that will help you conquer big data, using Hadoop. This revised new edition covers changes and new features in the Hadoop core architecture, including MapReduce 2. ...
  • Hadoop in Practice, 2nd Edition Hadoop in Practice, Second Edition provides over 100 tested, instantly useful techniques that will help you conquer big data, using Hadoop. This revised new edition covers changes and new features in the Hadoop core architecture, including MapReduce 2. ...
  • Coding Interviews ... to solve problems: figures to visualize problems, step-by-step analysis on examples to simplify problems, and divide-and-conquer strategies to break complex problems into manageable pieces. The topic of Chapter 7 is performance optimization. If there are ...
  • 一款非常好用的基于bootstrap的框架 一款非常好用的基于bootstrap的框架 Conquer-Responsive Admin Dashboard Template build with Twitter Bootstrap 3.0 5 种颜色可选,过百个模板页面,65个JQuery插件,包括图表、表格、地图、消息中心、监控面板等后台管理项目所需的各种组件,完美兼容IE8等各种浏览器。手机,平板,电脑等等,都可以用,自动适应屏幕!
  • Learning.Elixir.178588174 ... Stream Processing Chapter 5: Control Flow – Occasionally You Need to Branch Chapter 6: Concurrent Programming – Using Processes to Conquer Concurrency Chapter 7: OTP – A Poor Name for a Rich Framework Chapter 8: Distributed Elixir – Taking Concurrency to ...
  • 几种常见的排序方法 ... 进行排序。例如,把扑克牌的排序看成由花色和面值两个数据项组成的主关键字排序。 8.归并排序法思想: 归并排序是建立在归并操作上的一种有效的排序算法,该算法是采用分治法(Divide and Conquer)的一个非常典型的应用。将已有序的子序列合并,得到完全有序的序列;即先使每个子序列有序,再使子序列段间有序。 9.标准库排序法思想: 调用C语言标准库进行排序