Introduction to Algorithms:算法导论(4个版本)?- Thomas H. Cormen,Charles E. Leiserson 本书是MIT计算机专业的经典算法教材,内容全面,语言通俗,很适合入门者学习 Introductory combinatorics = 组合数学 ...
分类:
其他好文 时间:
2015-04-02 19:18:56
阅读次数:
173
本文译自Distributed Algorithms in NoSQL Databases系统的可扩展性是推动NoSQL运动发展的的主要理由,包含了分布式系统协调,故障转移,资源管理和许多其他特性。这么讲使得NoSQL听起来像是一个大筐,什么都能塞进去。尽管NoSQL运动并没有给分布式数据处理带来根...
分类:
数据库 时间:
2015-04-01 07:00:30
阅读次数:
284
什么是机器学习(Machine Learning. ML) ML is algorithms is a scientific discipline that explores the construction and study of algorithms that can learn from ....
分类:
其他好文 时间:
2015-03-29 01:45:07
阅读次数:
196
有时我们会把一些sql的在前台动态生成,这是我们首先要做的是验证他是不是合法,如果sql 语句结尾为and 或or 我们也要进行删除处理,不然会报错。
1.前台js 判断是否满足左右括号对称
function checkBracket(algorithms) {
var bracket = [];
var algorithms = algori...
分类:
数据库 时间:
2015-03-28 17:21:52
阅读次数:
246
Fast Compressive Tracking
(快速压缩跟踪)
虽然目前有很多种的跟踪算法,但是由于姿态的变化、光照的变化、障碍物等原因的存在,导致很多算法的鲁棒性不好。
目前比较主流的跟踪算法有两种,generative tracking algorithms(生成跟踪算法)和discriminative algorithms(判别跟踪算法)。
生成跟踪算法,顾名思义边生成边跟踪...
分类:
编程语言 时间:
2015-03-20 14:32:24
阅读次数:
6040
As most of the ACMers, wy's next target is algorithms, too. wy is clever, so he can learn most of the algorithms quickly. After a short time, he has l...
分类:
编程语言 时间:
2015-03-07 11:26:39
阅读次数:
195
毕业设计要做图像分割 识别什么的。看论文看到 superpixels 开始脑补是 像素插值算出来的后来越看越不想,搜索发现根本是另外一回事http://blog.sina.com.cn/s/blog_50363a7901011dtd.html有定义Many existing algorithms i...
分类:
其他好文 时间:
2015-03-07 06:12:22
阅读次数:
198
MySQL使用嵌套循环算法来实现多表之间的联接。Nested-Loop Join Algorithms一个简单的嵌套循环联接(NLJ)算法,循环从第一个表中依次读取行,取到每行再到联接的下一个表中循环匹配。这个过程会重复多次直到剩余的表都被联接了。
假设表t1、t2、t3用下面的联接类型进行联接:Table Join Type
t1 range
t2 ref
t3...
分类:
其他好文 时间:
2015-03-06 16:01:15
阅读次数:
125
using System;using System.Collections.Generic;namespace Algorithms{ public class PermutationAndCombination { /// /// 交换两个变量 /// /// 变量1 /// 变量2 publ.....
以下是STL六大组件(componments):
adapters 配接器 用来修饰其他组件。包括iterator adapters、function
adapters、container adapters三大类。
allocators 配置器 用来分配空间。空间可来自于内存或磁盘--取决于配置器如何
实现。主要用来服务容器。
algorithms 算法 如sort,bineary...
分类:
其他好文 时间:
2015-03-03 15:18:24
阅读次数:
376