ccap node.js generate captcha using c++ library CImg without install any other lib or software node-ccap —— node.js generate captcha using c++ library ...
分类:
Web程序 时间:
2016-10-22 18:02:09
阅读次数:
294
视图的创建: Oracle 游标使用: http://www.cnblogs.com/sc-xx/archive/2011/12/03/2275084.html 显式游标: 隐式游标: 在表的连接时,有 主表 left outer join 副表 效果一般会比直接内连接要好 ...
分类:
数据库 时间:
2016-10-22 17:58:26
阅读次数:
208
题目链接:51nod 1183 编辑距离 1 #include<cstdio> 2 #include<cstring> 3 #include<algorithm> 4 using namespace std; 5 const int N = 1001; 6 char a[N], b[N]; 7 in ...
分类:
其他好文 时间:
2016-10-22 17:39:00
阅读次数:
132
lambda只是一个表达式,函数体比def简单很多。 lambda的主体是一个表达式,而不是一个代码块。仅仅能在lambda表达式中封装有限的逻辑进去。 lambda表达式是起到一个函数速写的作用。允许在代码内嵌入一个函数的定义。 如下例子: 定义了一个lambda表达式,求三个数的和。 再看一个例 ...
分类:
编程语言 时间:
2016-10-22 17:16:18
阅读次数:
164
最近在看八股文。整理了一下思路,想深入了解还得多去写,无奈时间紧迫的情况下抛砖引玉也不失为下策: 1.Two Sum Easy 给出一个数组,找出其中两个和为目标值的坐标。思路: [1]排序。 和为目标值,一般的思路是先排序,然后取两点坐标分别从首尾向中间移动。若和为目标值则返回两点坐标。若和大于目 ...
分类:
编程语言 时间:
2016-10-22 14:48:35
阅读次数:
171
原文: http://gitbook.liuhui998.com/7_3.html git中,分支(branch), 远程跟踪分支(remote-tracking branch)以及标签(tag)都是对提交的引用. 所有的引用是用"refs"开头, 以斜杠分割的路径. 到目前为此, 我们用到的引用名 ...
分类:
其他好文 时间:
2016-10-22 12:19:14
阅读次数:
218
设 \[f(n)=\sum_{d|n}\mu^2(d)\] 则 \[\begin{eqnarray*}\sigma_0(n^2)&=&\sum_{d|n}f(d)\\ans&=&\sum_{i=1}^n\sigma_0(i^2)\\&=&\sum_{i=1}^n\sum_{d|i}\sum_{k|d ...
分类:
其他好文 时间:
2016-10-22 07:38:13
阅读次数:
192
Delegate 1.基本类: 1 public class Student 2 { 3 public int Id { get; set; } 4 public string Name { get; set; } 5 6 public void Study() 7 { 8 Console.Writ ...
分类:
其他好文 时间:
2016-10-22 07:33:18
阅读次数:
160
速查表: char -128 ~ +127 (1 Byte)short -32767 ~ + 32768 (2 Bytes)unsigned short 0 ~ 65535 (2 Bytes)int -2147483648 ~ +2147483647 (4 Bytes)unsigned int 0 ...
分类:
其他好文 时间:
2016-10-22 07:16:21
阅读次数:
149
本文含epmd简介及官方文档之翻译,文档地址 http://erlang.org/doc/man/epmd.html翻译时的版本 R19.1 中英文水平都不咋地,不通顺处海涵,就酱。 简介 Erlang分布式系统中节点是通过节点名字互相连接的,节点名字为NAME@IP_ADDRESS格式。 epmd ...
分类:
其他好文 时间:
2016-10-22 00:47:59
阅读次数:
237