码迷,mamicode.com
首页 >  
搜索关键字:顺序表的实现    ( 45个结果
【C语言】静态顺序表的实现(包括头插、头删、尾插、尾删、查找、删除指定位置)
#define_CRT_SECURE_NO_WARNINGS1 #include<iostream> usingnamespacestd; #include<assert.h> #defineMAXSIZE100 typedefintDataType; typedefstructSeqList { DataType_array[MAXSIZE]; size_t_size; }SeqList; voidInitSeqList(SeqList*pSeq) { assert(pS..
分类:编程语言   时间:2016-05-01 17:52:59    阅读次数:350
顺序表的实现
...
分类:其他好文   时间:2016-04-17 17:47:17    阅读次数:205
顺序表的实现
顺序表:逻辑上连续,物理结构上也连续实现一个具有“增、删(根据位置删除,根据元素删除)、查、初始化、输入、打颖等简单功能的顺序表:源码:头文件部分(#include"sequence.h"): #include<stdio.h> #include<stdlib.h> #defineMAXSIZE10 typedefintElemType;..
分类:其他好文   时间:2016-04-06 19:00:41    阅读次数:198
顺序表的实现---静态
"Seq_S.h"#ifndef__SEQ_LIST_H__#define__SEQ_LIST_H__#defineMAX100#include<stdio.h>#include<assert.h>#include<string.h>typedefintDataType;typedefstructSeqList{ DataTypearr[MAX]; intsize;}SeqList,*pSeqList;voidInitSeqList(pSeqListpSeq);//初始..
分类:其他好文   时间:2016-02-27 01:08:14    阅读次数:251
顺序表的实现---动态
“Seq_D.h”#ifndef__SEQ_LIST_H__#define__SEQ_LIST_H__#defineINIT_SIZE2#defineINC2#include<stdio.h>#include<assert.h>#include<string.h>#include<malloc.h>#include<stdlib.h>typedefintDataType;typedefstructSeqList{ DataType*data;//..
分类:其他好文   时间:2016-02-27 01:05:51    阅读次数:223
数据结构-------顺序表的实现
2016.1-14顺序表的实现.h文件#pragmaonce#include<stdio.h>#include<string.h>#include<assert.h>#defineMAX_SIZE1000//预定义顺序表为1000typedefintDataType;//控制以后数据类型typedefstructSeqList//定义一个结构体{DataTypearray[MAX_SIZE];//定义一个..
分类:其他好文   时间:2016-01-16 07:41:33    阅读次数:189
简单的动态顺序表的实现
#pragmaonce #include<stdio.h> #include<assert.h> #include<malloc.h> #include<string.h> typedefintDateType; typedefstructSeqList { DateType*_array; size_t_size; size_t_capacity; }SeqList; voidInitSeqList(SeqList*pSeq) { assert(pSeq);..
分类:其他好文   时间:2015-11-13 23:45:35    阅读次数:463
一个完整顺序表的实现
【linearlist.h】: 1 #include 2 using namespace std; 3 template 4 class Linearlist 5 { 6 public: 7 virtual bool IsEmpty() const = 0; 8 virtual i...
分类:其他好文   时间:2015-09-13 15:46:29    阅读次数:229
【C++】顺序表的实现
#include #include using namespace std; //typedef struct FindRet //{ // bool isFind; // 是否找到的标示 // size_t index; // 找到数据的下标 //}Findret; typedef int DataType; class SeqList { public: ...
分类:编程语言   时间:2015-08-25 21:39:37    阅读次数:141
【c++版数据结构】之顺序表的实现
SeqList.h #ifndef SEQLIST_H #define SEQLIST_H #include using namespace std; typedef enum{TRUE,FALSE}Status; template class SeqList { private: enum{DefaultSize = 10}; //顺序表的默认长度 Type *base; ...
分类:编程语言   时间:2015-08-19 14:57:11    阅读次数:161
45条   上一页 1 2 3 4 5 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!