全部博文(2759)
发布时间:2012-12-20 13:50:50
http://www.cnblogs.com/darejoy/archive/2010/05/27/1745871.htmlprivate static int find(int[] arySource, int target, int start, int end){ if (start == end) { if (arySource[start] == target) &n......【阅读全文】
发布时间:2012-12-20 13:50:32
原文:http://blog.csdn.net/sdccyong/article/details/6289410[cpp] view plaincopy/* IDEA.h */ #ifndef IDEA_H #define IDEA_H /* define return status */ #define IDEA_SUCCESS &nbs......【阅读全文】
发布时间:2012-12-20 13:49:35
#include <iostream> #ifdef WIN32 #include <windows.h> #else #include <sys/time.h> #endif using std::cout; using std::endl; long GetMillisecond() { long lMillisecond = 0L; #ifdef WIN32 SYSTEMTIME  ......【阅读全文】
发布时间:2012-12-18 00:59:15
http://blog.chinaunix.net/uid-22150747-id-189252.html 相关函数 fork,execve,waitpid,popen 表头文件 代码: #include<stdlib.h> 定义函数 代码: int system(const char * string); 函数说明 system() 会调用fork()产生子进程,由子进程来调用/bin/sh-c string来执行参数string字符串所代表的命令,此命令执行完后随即返回原调用的进程。在调用system()期间SIGCHLD ......【阅读全文】
发布时间:2012-12-18 00:58:37
Folly,FackBook的一个C++底层库,一切为了性能https://github.com/facebook/folly原文:http://developer.51cto.com/art/201206/340607.htmFolly与Boost、当然还有std等组件库的关系是互为补充,而不是彼此竞争。实际上,只有当我们需要的东西既没有,也无法满足所需的性能要求时,我们才开始定义自己的组件。性能问题贯穿着Folly的大部分,有时导致比较具有特质性的设计(比如PackedSyncPtr.h和SmallLocks.h)。整体上确保良好的性能是所有Folly的统一主题。逻辑设计Folly是一组相......【阅读全文】