05 2014 档案
摘要:http://borismoore.github.io/jsrender/demos/demos.html 模板引擎 http://bardo.iteye.com/blog/1539196 PS: https://github.com/BorisMoore/jsrender/tree/v0.9.86
阅读全文
该文被密码保护。
摘要:#include #include int main(/*int argc, char const *argv[]*/){ void * target; time_t now = time(NULL); if(now & 1) target = &&odd; else target = &&e...
阅读全文
摘要:OCR (Optical Character Recognition,光学字符识别)是指电子设备(例如扫描仪或数码相机)检查纸上打印的字符,通过检测暗、亮的模式确定其形状,然后用字符识别方法将形状翻译成计算机文字的过程;即,对文本资料进行扫描,然后对图像文件进行分析处理,获取文字及版面信息的过程。如...
阅读全文
摘要:http://www.iteye.com/news/27580用法:http://docs.emmet.io/cheat-sheet/sublime 2 添加:1. Ctrl+Alt+p -> install2. emmetVS2010插件:http://visualstudiogallery.ms...
阅读全文
摘要:为什么归并排序如此有用?1. 快捷和稳定归并排序成为⼀一个非常棒的排序算法主要是因为它的快捷和稳定。它的复杂度即使在最差情况下都是O(n log n)。而快速排序在最差情况下的复杂度是O(n^2),当n=20的时候,它比归并要慢4.6倍。2.容易实现#coding:utf-8def merge_so...
阅读全文