顺序线性表:
#include
#include
#include
typedef int ElemType; //声明新类型名
typedef struct List
{
ElemType * elem;
int length;
int maxsize;
}Sqlist;
void Init_Sqlist(Sqlist &L) ...
分类:
其他好文 时间:
2014-08-10 13:10:30
阅读次数:
246
1、顺序表顺序表的定义 #define MaxSize 100 ElemType
Sqlist[MaxSize]; int len;相当于 int a[100];动态生成一张顺序表的方法可描述如下:#define MaxSize
100typedef struct{ElemType *elem...
分类:
其他好文 时间:
2014-07-22 23:06:15
阅读次数:
277
#include#include#define LIST_INIT_SIZE
10/*线性表初始长度*/#define LIST_CREATENT 2/*每次的增量*/typedef int ElemType;using
namespace std;typedef struct SqList/*线性...
分类:
其他好文 时间:
2014-06-07 21:01:21
阅读次数:
322
1 /* 2
============================================================================ 3
Name : sqlist.c 4 Author : codecup 5 Version ...
分类:
其他好文 时间:
2014-05-03 23:54:39
阅读次数:
471
胡乱写了一些代码/*
============================================================================
Name : sqlist.c Author :codecup Version : Copy...
分类:
其他好文 时间:
2014-05-02 17:22:31
阅读次数:
356