码迷,mamicode.com
首页 >  
搜索关键字:sqlist    ( 135个结果
线性表
顺序线性表: #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
自学数据结构——顺序线性表2
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
135条   上一页 1 ... 12 13 14
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!