首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴晨煊的代码贴C语言
#include<stdio.h>
#include<stdlib.h>

typedef int KeyType;

typedef struct{
KeyType key;
}ElemType;

typedef struct{

ElemType *elem;
......................
阅读全部 | 2014年12月16日 17:31
1
晨煊