Martin Fowler曾经在一篇文章中曾经引用过Phil Karlton的话:
There are only two hard things in Computer Science: cache invalidation and naming things. ...
分类:
其他好文 时间:
2016-06-07 12:41:38
阅读次数:
129
一、算法简介 Affinity Propagation聚类算法简称AP,是一个在07年发表在Science上的聚类算法。它实际属于message-passing algorithms的一种。算法的基本思想将数据看成网络中的节点,通过在数据点之间传递消息,分别是吸引度(responsibility)和 ...
分类:
编程语言 时间:
2016-06-07 01:10:44
阅读次数:
3029
Martin Fowler曾经在一篇文章中曾经引用过Phil Karlton的话:There are only two hard things in Computer Science: cache invalidation and naming things.他说这句话在很长的一段时间内都是他最喜欢... ...
分类:
其他好文 时间:
2016-06-06 18:28:59
阅读次数:
120
1. Nature, Scientific Reports 4, Article number: 5552 (2014) "Imaging With Nature: Compressive Imaging Using a Multiply Scattering Medium" The recent ...
分类:
其他好文 时间:
2016-06-02 19:49:21
阅读次数:
123
Problem Description
Eddy usually writes articles ,but he likes mixing the English letter uses, for example “computer science” is written frequently “coMpUtEr scIeNce” by him, this mistakes lets Eddy’s...
分类:
其他好文 时间:
2016-05-27 18:38:20
阅读次数:
98
第六节课:元组合集合 首先,看一下英文对应词汇“迭代”-》"iteration"->(computer science) a single execution of a set of instructions that are to be repeated; "the solution took h ...
分类:
其他好文 时间:
2016-05-25 23:47:03
阅读次数:
218
本着简洁直接,我们就直奔主题吧! 下面是一个生成数字和字母随机组合的验证码类源代码: using System; using System.Drawing; using System.Drawing.Imaging; using System.Web.UI; using System.Drawing ...
分类:
Web程序 时间:
2016-05-25 20:40:39
阅读次数:
187
代码参考:http://www.hankcs.com/program/uva-q101-the-blocks-problem.html Description Background Many areas of Computer Science use simple, abstract domains ...
分类:
其他好文 时间:
2016-05-22 22:49:34
阅读次数:
491
python2.6.6安装Image模块1、下载Image模块源码地址:http://www.pythonware.com/products/pil/index.htm2、加压文件#tar zxvf Imaging-1.1.7.tar.gz3、安装模块#cd Imaging-1.1.7#python ...
分类:
编程语言 时间:
2016-05-19 10:24:52
阅读次数:
153
PIL:Python Imaging Library,已经是Python平台事实上的图像处理标准库了。PIL功能非常强大,但API却非常简单易用。 由于PIL仅支持到Python 2.7,加上年久失修,于是一群志愿者在PIL的基础上创建了兼容的版本,名字叫Pillow,支持最新Python 3.x, ...
分类:
其他好文 时间:
2016-05-16 19:38:38
阅读次数:
185