首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴千里孤坟的代码贴全部
#include<stdio.h>
#include<stdlib.h>
#define LIST_INIT_SIZE 100
#define LISTINCREMENT  10
#define ElemType int
typedef struct LNode
{
ElemType data;
struct LNode *next;
int length;
}LNode, *LinkList;

......................
阅读全部 | 2014年11月1日 22:50
1
千里孤坟