2016年10月31日

c++求若干个集合的笛卡尔积

摘要: 大家都知道求任意两个集合的笛卡尔积一般是如下这种方式#include #define m 3#define n 2int main() { int i,j; char a[m],b[n]; for (i=0;i ",a[i],b[j]); printf("}... 阅读全文

posted @ 2016-10-31 15:04 爱你一万年123 阅读(564) 评论(0) 推荐(0) 编辑

ConcurrentHashMap完全解析(jdk6/7,8)

摘要: 并发编程实践中,ConcurrentHashMap是一个经常被使用的数据结构,相比于Hashtable以及Collections.synchronizedMap(),ConcurrentHashMap在线程安全的基础上提供了更好的写并发能力,但同时降低了对读一致性的要求(这点好像CAP理论啊... 阅读全文

posted @ 2016-10-31 08:05 爱你一万年123 阅读(138) 评论(0) 推荐(0) 编辑

导航