准备篇下载软件包1.下载nginxhttp://nginx.org/download/nginx-1.2.0.tar.gz2、下载pcre (支持nginx伪静态)ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.35.tar....
分类:
系统相关 时间:
2015-01-06 17:46:25
阅读次数:
324
套路:一般有两个string的时候 都建二维的数组来存。int[][] dp =new int[len+1][len+1];初始情况已设立dp[0][0] = 1;递归循环for()dp[i][j] = dp [i-1][j];交答案dp[len][len]
分类:
其他好文 时间:
2015-01-05 23:29:58
阅读次数:
290
linux系统调用和库函数调用的区别Linux下对文件操作有两种方式:系统调用(system call)和库函数调用(Library functions)。可以参考《Linux程序设计》(英文原版为《Beginning Linux Programming》,作者是Neil Matthew和Richa...
分类:
系统相关 时间:
2015-01-05 18:26:55
阅读次数:
222
1.Technical Q&A QA1398Mach Absolute Time Unitshttps://developer.apple.com/library/mac/qa/qa1398/_index.html2.Kernel Programming Guidehttps://developer...
分类:
移动开发 时间:
2015-01-05 12:37:56
阅读次数:
256
Key Concept: TypesTypes are one of the most fundamental concepts in programming and aconcept that we will come back to over and over in this Primer. A...
分类:
编程语言 时间:
2015-01-04 18:40:01
阅读次数:
191
英文原文:12 Effective Ways To Improve Your Programming 1. 永远不要停止学习和阅读 阅读书籍,而不只是网站 阅读只为自我提升,而不是为了下一个项目 阅读提升你的基础,而不只是最新技术 2. 跟比你聪明的人一起工作 跟比你更聪明的人或者是...
分类:
其他好文 时间:
2015-01-03 22:16:57
阅读次数:
207
书籍:Functional Programming forJava Developerspapers:Why Functional Programming Matters在线课程:CSE341: Programming Languages (washington university)课程主页: h...
分类:
其他好文 时间:
2015-01-03 17:06:16
阅读次数:
126
Effective C++学习笔记一
条款01:视C++为一个语言联邦
Ø C
Ø Object-Oriented C++
Ø Template C++//泛型编程部分(generic programming)
Ø STL
C++高效编程守则视情况而变化,取决与你使用C++的哪一部分。
条款02:尽量以const, enum, inline替换#define
Ø 对于单纯常量...
分类:
编程语言 时间:
2015-01-03 10:42:47
阅读次数:
123