1. 程式人生 > >順序表的運算

順序表的運算

term false als iss body oca data 列表 ==

#include <iostream>
#include <cstdio>
#include <cstdlib>
#define MaxSize 50
using namespace std;
typedef struct
{
    char data[MaxSize];
    int length;
}SqList;

void InitList(SqList * &L)
{
    L=(SqList *)malloc(sizeof(SqList));
    L->length=0;
}
void DestroyList (SqList * &L)
{
    free(L);
}
bool ListEmpty(SqList * &L)
{
    return (L->length==0);
}
int ListLength(SqList * &L)
{
    return (L->length);
}
void DispList(SqList * &L)
{
    int i;
    for(i=0;i<L->length;i++)
    {
        cout<<L->data[i];

    }
    cout<<endl;
}
bool GetElem(SqList * &L,int i,char &e)
{
    if((i<1)||(i>L->length))
        return false;
    e=L->data[i-1];
    cout<<e<<‘\n‘;
    return true;
}
int LocateElem(SqList * &L,char &e)
{
    int i=0;
    while(i<L->length&&L->data[i]!=e)
        i++;
    if(i>L->length)
        return 0;
    else
        return i+1;
}
bool ListInsert(SqList * &L,int i,char &e)
{
    int j;
    if(i<1||i>L->length+1)
        return false;
    i--;
    for(j=L->length;j>i;j--)
        L->data[j]=L->data[j-1];
    L->data[i]=e;
    L->length++;
    return true;
}
void wc(SqList * &L,char a[])
{
    int j;
    for(j=0;a[j]!=‘\0‘;j++)
    {
        L->data[j]=a[j];
        L->length++;
    }
}
bool ListDelete(SqList * &L,int i,char &e)
{
    int j;
    if(i<1||i>L->length)
        return false;
    i--;
    e=L->data[i];
    for(j=i;j<L->length-1;j++)
        L->data[j]=L->data[j+1];
    L->length--;
    return true;
}
int main()
{
    SqList *L;
    InitList(L);
    cout<<"初始化順序表L"<<endl;
    char a[6];
    cout<<"採用尾插法一次插入元素:";
    gets(a);
    wc(L,a);
    cout<<"輸出順序表:";
    DispList(L);
    cout<<"順序表的長度為:"<<ListLength(L)<<‘\n‘;
    if(ListEmpty(L)==0)
        cout<<"順序列表不為空!

"<<‘\n‘; else cout<<"順序列表為空!"<<‘\n‘; char e,ch,sh; int i,m,x; cout<<"查找第i個元素,請輸入i:"; cin>>i; cout<<"輸出順序表的第"<<i<<"個元素= "; GetElem(L,3,e); cout<<"查找ch元素的位置。請輸入ch:"; cin>>ch; cout<<"輸出元素"<<ch<<"的位置:"<<LocateElem(L,ch)<<‘\n‘; cout<<"在第m個位置上插入元素sh。請輸入m和sh: "; cin>>m>>sh; ListInsert(L,m,sh); cout<<"在順序表第"<<m<<"個位置上插入元素"<<sh<<"後。輸出順序表:"; DispList(L); cout<<"刪除順序表第x個元素,請輸入x:"; cin>>x; ListDelete(L,x,e);//還是同上 cout<<"刪除順序表第"<<x<<"個元素後,輸出順序表:"; DispList(L); DestroyList(L);//同上 cout<<"釋放順序表L!"; return 0; }

技術分享圖片

順序表的運算