淡然小馒头

文章
4
资源
0
加入时间
2年10月21天

缓存系统设计

ReadWriteLock使用public class CacheSystemTest { public static void main(String[] args) { MyCache cache = new MyCache(); ExecutorService threadpool = Executors.newCachedThreadPool(); for(int i =0;i<10;i++) {

C++单链表简单操作

#include <iostream>#include <stdio.h>using namespace std;typedef struct LNode{ int data; struct LNode* next;}LNode,*Linklist;// 头插法建立单链表void HeadInsert(Linklist &L){ int x; L = (Linklist)malloc(sizeof(L