首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴zxh2013的代码贴全部
# include<stdio.h>
# include<malloc.h>
# include<stdlib.h>

typedef struct SQLIST
{
int * pBase;
    int size;
int MAXSIZE;
} L ;

void Init_SqList(L * pList, int maxsize)
......................
阅读全部 | 2013年4月2日 19:11
1
zxh2013