Monthly Archives: 十一月 2011

一个不错的NodeJS教程

介绍了NodeJS的历史,优势劣势, 安装,使用方法 Server-Side JavaScript Developement – Node.JS Quick Tour

c++版本的普通程序员,文艺程序员,2b程序员和失足程序员

逆序输出字符串 普通程序员 #include <iostream> using namespace std; char *str = “n!dlrow olleh”; int main (int argc, char** argv) { for(char *p = str + strlen(str); p >= str; p–){ cout << *p; } return 0; } 文艺程序员 #include <iostream> #include <iterator> #include <algorithm> using namespace std; static char *str = “n!dlrow olleh”; int main (int [...]