满意答案
cyl0319
2013.10.15
采纳率:57% 等级:8
已帮助:62人
#include
using namespace std;
typedef char ElemType;
typedef struct LNode
{
ElemType data;
LNode *next;
}LinkList;
void InitList(LinkList *&L)//初始化线性表
{
L=new LinkList;
L->next=NULL;
}
void DestroyList(LinkList *&L)//销毁线性表
{
LinkList *p=L,*q=p->next;
while(q!=NULL)
{
delete p;
p=q;
q=p->next;
}
delete p;
}
int ListEmpty(LinkList *L)//判断线性表是否为空表
{
return(L->next==L);
}
int ListLength(LinkList *L)//求线性表的长度
{
LinkList *p=L;
int n=0;
while(p->next !=NULL)
{
n++;
p=p->next;
}
return n;
}
void DispList(LinkList *L)//输出线性表
{
LinkList *p=L->next;
while(p!=NULL)
{
cout<data<
p=p->next;
}
cout<
}
int GetElem(LinkList *L,int i,ElemType &e)//求线性表中某个数据元素的值
{
LinkList *p=L;
int j=0;
while(p!=NULL && j
{
j++;
p=p->next;
}
if(p==NULL)
return 0;
else
{
e=p->data;
return 1;
}
}
int LocateElem(LinkList *L,ElemType e)//按元素值查找
{
LinkList *p=L->next;
int i=1;
while(p!=NULL && p->data!=e)
{
i++;
p=p->next;
}
if(p==NULL)
return 0;
else
return i;
}
int ListInsert(LinkList *&L,int i,ElemType e)//插入数据元素
{
LinkList *p=L,*s;
int j=0;
while(j
{
p=p->next;
j++;
}
if(p==NULL)
return 0;
else
{
s=new LinkList;
s->data=e;
s->next=p->next;
p->next=s;
return 1;
}
}
int ListDelete(LinkList *&L,int i,ElemType &e)//删除数据元素
{
LinkList *p=L,*q;
int j=0;
while(p!=NULL && j
{
j++;
p=p->next;
}
if(p==NULL)
return 0;
else
{
q=p->next;
if(q==NULL)
return 0;
e=q->data;
p->next=q->next;
delete q;
return 1;
}
}
void main()
{
LinkList *h;
ElemType e;
cout<
InitList(h);
cout<
ListInsert(h,1,'a');
ListInsert(h,2,'b');
ListInsert(h,3,'c');
ListInsert(h,4,'d');
ListInsert(h,5,'e');
cout<
DispList(h);
cout<
cout<
if(ListEmpty(h))
cout<
else
cout<
GetElem(h,3,e);
cout<
cout<
cout<
ListInsert(h,4,'f');
cout<
DispList(h);
cout<
ListDelete(h,3,e);
cout<
cout<
DispList(h);
cout<
DestroyList(h);
}
00分享举报