资源简介
华中科技大学_实验报告_基于链式存储结构实现线性表的基本运算
代码片段和文件信息
#include
#include
#include
/*---------page 10 on textbook ---------*/
#define TRUE 1
#define FALSE 0
#define OK 1
#define ERROR 0
#define INFEASTABLE -1
#define OVERFLOW -2
typedef int status;
typedef int ElemType; //数据元素类型定义
/*-------page 22 on textbook -------*/
#define LIST_INIT_SIZE 100
#define LISTINCREMENT 10
typedef struct ListNode { //顺序表(顺序结构)的定义
ElemType data;
struct ListNode *next;
}ListNode*pListNode;
int e;
ListNode L;
pListNode pL = &L;
status IntiaList(pListNode &Lp) {
Lp = (pListNode)malloc(sizeof(ListNode));
Lp->data = 0;
Lp->next = NULL;
pL = Lp;
return OK;
}
status DestroyList(pListNode &Lp) {
if (!Lp)return ERROR;
Lp->data = 0;
if (Lp->next == NULL)
{
free(Lp->next);
free(Lp);
}
else
{
DestroyList(Lp->next);
Lp->next = NULL;
free(Lp);
}
return OK;
}
status ClearList(pListNode &Lp) {
if (!Lp)return ERROR;
Lp->data = 0;
if (Lp->next == NULL)
{
free(Lp);
}
else
{
ClearList(Lp->next);
free(Lp);
}
return OK;
}
status ListEmpty(ListNode L) {
if (L.data == 0)
return TRUE;
else
return FALSE;
}
int ListLength(ListNode L) {
return L.data;
}
status GetElem(ListNode L int i ElemType *e) {
if (i<1 || i>L.data)
return ERROR;
pListNode p = L.next;
while (--i)
{
p = p->next;
}
(*e) = p->data;
return OK;
}
status compare(ElemType e ElemType f)
{
if (f == e)return TRUE;
else return FALSE;
}
status LocateElem(ListNode L ElemType e status(*comparep)(ElemType e ElemType f))
{
if (L.next == NULL)
return ERROR;
pListNode p = L.next;
int i = 1;
while (p)
{
if ((*comparep)(e p->data))
return i;
else
{
i++;
p = p->next;
}
}
return 0;
}
status PriorElem(ListNode L ElemType cur_e ElemType* pre_e)
{
if (L.data == 0)
return ERROR;
if (L.next->data == cur_e)
return ERROR;
pListNode pri_p = L.next cur_p = L.next->next;
while ((cur_p->data != cur_e) && cur_p)
{
pri_p = cur_p;
cur_p = cur_p->next;
}
if (cur_p->data == cur_e)
{
*pre_e = pri_p->data;
return OK;
}
else return ERROR;
}
status NextElem(ListNode L ElemType cur_e ElemType* next_e)
{
if (L.next == 0)
return ERROR;
pListNode p = L.next;
while (p->data != cur_e && p->next)
p = p->next;
if (!(p->next))return ERROR;
else //if(p->data == cur_e)
{
*next_e = p->next->data;
return OK;
}
}
status ListInsert(pListNode Lp int i ElemType e) {
if (i<1 || i>Lp->data + 1)
return ERROR;
pListNode p = (pListNode)malloc(sizeof(ListNode));
if (Lp->data == 0) {
Lp->next = p;
p->data = e;
p->next = NULL;
Lp->data = 1;
return OK;
}
pListNode p1 = Lp->next;
while (p1->next)p1 = p1->next;
p1->next = p;
p->data = e;
p->next = NULL;
Lp->data++;
return OK;
}
status ListDelete(pListNode Lp int i ElemType* e)
{
if (Lp->data)
{
if (i<1 || i>Lp->data)
return ERROR;
p
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1118 2016-05-28 23:13 2 基于链式存储结构实现线性表的基本运算\Makefile.win
文件 7879 2016-06-12 00:42 2 基于链式存储结构实现线性表的基本运算\main.cpp
文件 138486 2016-06-12 00:53 2 基于链式存储结构实现线性表的基本运算\main.exe
文件 9596 2016-05-28 23:13 2 基于链式存储结构实现线性表的基本运算\main.o
文件 960 2016-05-28 23:09 2 基于链式存储结构实现线性表的基本运算\基于链式存储结构实现线性表的基本运算.dev
文件 138486 2016-05-28 23:13 2 基于链式存储结构实现线性表的基本运算\基于链式存储结构实现线性表的基本运算.exe
文件 97 2016-05-28 23:14 2 基于链式存储结构实现线性表的基本运算\基于链式存储结构实现线性表的基本运算.layout
目录 0 2016-06-12 00:53 2 基于链式存储结构实现线性表的基本运算\
- 上一篇:微机原理课程设计---密码键盘
- 下一篇:影像融合与融合精度评价源码
相关资源
- 广工人工智能——决策树实验报告.
- 杭电数据结构马踏棋盘实验报告
- FPGA数字钟实验报告.pdf
- 面向对象与多线程综合实验报告
- 数据结构运动会分数统计实验报告
- 编译原理实验报告封面样式
- 东北大学Linux实验报告及代码sk.zip
- 数据结构实验报告3-栈与队列-中缀表
- 数据结构实验报告1-线性表-两个有序
- 华中科技大学计算机网络实验
- linux字符设备驱动代码,副实验报告很
- 操作系统实验报告实验一 WINDOWS进程初
- 单片机课程设计,数字电压表,主要
- 华中科技大学操作系统实验报告
- 线程和进/线程管道通信实验操作系统
- 叮咚门铃实验报告
- 山东大学 操作系统实验报告1-7
- 磁盘调度算法实验报告
- 华中科技大学 MIPS_CPU 实现了动态分支
- 数据库系统概论课程设计实验报告 山
- 天津理工大学,操作系统实验报告*
- 操作系统实验六 设备管理 实验报告
- 汇编实验报告汇总共6个常用实验报告
- 东北大学接口技术开放实验报告
- Linux操作系统实验报告
- 页面置换算法实验报告
- 汇编语言所有实验报告
- 邻接表图遍历的演示注释比较详尽,
- 汇编加减乘除四则运算
- LaTex报告封面样式-2
评论
共有 条评论