发布时间:2012-12-20 10:31:26
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-19 23:11:10
原文: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-19 10:51:13
#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-17 13:17:53
地址:http://www.crystax.net/?locale=en这个CrystaX NDK的作者是俄罗斯人,牛逼!俄罗斯,一个黑客云集的地方。这个是NDK r7的新特性介绍:DescriptionHere is customized distribution of Android NDK r7 which I have rebuilt from official sources. Starting from NDK r5, Google added support of C++ exceptions, RTTI and STL to the official NDK. That's g......【阅读全文】
发布时间:2012-12-17 11:33:02
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是一组相......【阅读全文】