经典排序算法总结(代码)·冒泡法·快速排序·插入排序·希尔(shell)排序·选择排序·堆排序·归并排序附:排序算法原理:http://zh.wikipedia.org/wiki/Category:%E6%8E%92%E5%BA%8F%E7%AE%97%E6%B3%95flash演示:http://...
分类:
其他好文 时间:
2014-08-13 17:43:06
阅读次数:
257
概念先说一说基本的概念,这包括什么是Unicode,什么是UTF-8,什么是UTF-16。Unicode,UTF-8,UTF-16完整的说明请参考Wiki(Unicode,UTF-8,UTF-16)。用比较简单的话来说就是,Unicode定义了所有可以用来表示字符的数值集合(称之为Code Poin...
分类:
其他好文 时间:
2014-08-12 16:35:14
阅读次数:
161
1、微信开放平台https://open.weixin.qq.com/cgi-bin/frame?t=resource/res_main_tmpl&lang=zh_CN&target=res/app_wx_login2、微信公众平台开发者文档http://mp.weixin.qq.com/wiki/...
分类:
微信 时间:
2014-08-12 16:26:14
阅读次数:
405
路由器常用的linux路由系统有openWRT(可以考虑他的dreambox版本和backfire版本)、ddWRT、TT(tomato)、北美土狼coyote比如我们可以直接查看ddWRT的支持列表ttp://wiki.openwrt.org/toh/start,在这里,你直接找到你的路由厂商以及...
分类:
其他好文 时间:
2014-08-12 00:17:13
阅读次数:
291
偏最小二乘法(PLS)是近年来发展起来的一种新的多元统计分析http://en.wikipedia.org/wiki/Partial_least_squares_regression
分类:
其他好文 时间:
2014-08-11 23:59:53
阅读次数:
437
http://poj.org/problem?id=2549
维基百科有3Sum算法:https://en.wikipedia.org/wiki/3SUM
sort(S);
for i=0 to n-3 do
a = S[i];
k = i+1;
l = n-1;
while (k<l) do
b = S[k];
c = ...
分类:
其他好文 时间:
2014-08-11 21:23:53
阅读次数:
356
mediawiki在windows下的安装对于刚接触wiki的朋友们来说,配置一个服务器环境,安装并运行mediawiki是一件很麻烦的事情,在这里,我尽量用通俗易懂的语言,介绍mw(mediawiki,下同)在windows下的安装过程。mw是使用php开发的,php是近来比较成熟的web脚本语言...
分类:
Windows程序 时间:
2014-08-11 11:48:02
阅读次数:
1424
网上找了好久没有正确的,后面直接在http://wiki.nginx.org/Drupal
上找到原文,但原文中复制过来会出现个 'root' rewrite directive is duplicate 错误和 server 第一列的错误。
对比aliyun上的预先设定的rewrite 发现它们都没有server {} 这个名,并且这个位置也在nginx -t 时报错了。
注释了报错的位置...
分类:
其他好文 时间:
2014-08-10 10:28:50
阅读次数:
318
Reference:http://en.wikipedia.org/wiki/Rule_of_three_(C%2B%2B_programming)Therule of three(also known as the Law of The Big Three or The Big Three) is...
分类:
其他好文 时间:
2014-08-09 23:03:59
阅读次数:
331
1.各种Unix shelllinux下的shell基本是从unix环境中的shell发展而来,贴一下wiki:其中我们常用的,可归类为Bourne Shell(/usr/bin/sh或/bin/sh)、Bourne Again Shell(/bin/bash)、C Shell(/usr/bin/c...
分类:
系统相关 时间:
2014-08-09 21:08:09
阅读次数:
348