三少爷

专注~~~

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2012年3月26日

摘要: #include<stdio.h>#include<stdlib.h>#define EQ(a,b) ((a) == (b))#define LT(a,b) ((a) < (b))#define LE(a,b) ((a) <= (b))typedef struct{ int key; int data;}SElemType;typedef struct{ SElemType *elem; int length;}SSTable;SSTable * create(int n){ SSTable *sst = (SSTable *)malloc(sizeof(S 阅读全文
posted @ 2012-03-26 20:33 三少_爷 阅读(113) 评论(0) 推荐(0) 编辑