リニア・テーブル--シーケンシャル・テーブル(セルフ・ビルド・シーケンシャル・テーブル計算ライブラリ)


/*Copyright(c)2015煙台大学コンピュータと制御工学学院*All right reserved.*ファイル名:list.cpp
*writer:羅海員
*date:2015年9月10日*バージョン:V 1.0.1**問題記述:「線形テーブルの作成」をテストするアルゴリズムCreateList*入力記述:テーブルが空であるか否かを判断し、テーブルが空であるか否かを判断するアルゴリズムListEmptyを実現する.
*アルゴリズムライブラリには2つのファイルがあります.ヘッダファイル:list.h、シーケンステーブルデータ構造を定義するコード、マクロ定義、アルゴリズムを実現する関数の宣言を含む.ソースファイル:list.cpp,各種アルゴリズムを実現する関数の定義を含む
*プログラム出力:「出力リニアテーブル」を実現するアルゴリズムDisList*/
 
 
--list.h   
//順序表データ構造を定義するコード、マクロ定義、アルゴリズムを実現する関数を含む宣言
#ifndef LIST_H_INCLUDED
#define LIST_H_INCLUDED

#include <stdio.h>
#include <malloc.h>
#define MaxSize 50
typedef int ElemType;
typedef struct
{
    ElemType data[MaxSize];
    int length;
} SqList;
void CreateList(SqList *&L, ElemType a[], int n);//        
void InitList(SqList *&L);//      InitList(L)
void DestroyList(SqList *&L);//     DestroyList(L)
bool ListEmpty(SqList *L);//       ListEmpty(L)
int ListLength(SqList *L);//       ListLength(L)
void DispList(SqList *L);//     DispList(L)
bool GetElem(SqList *L,int i,ElemType &e);//        GetElem(L,i,e)
int LocateElem(SqList *L, ElemType e);//      LocateElem(L,e)
bool ListInsert(SqList *&L,int i,ElemType e);//      ListInsert(L,i,e)
bool ListDelete(SqList *&L,int i,ElemType &e);//      ListDelete(L,i,e)#endif // LIST_H_INCLUDED
#endif

 
 
--list.cpp
//各種アルゴリズムを実現する関数の定義を含む
//リニアテーブル初期化リニアテーブルInitList(L)リニアテーブル破棄DestroyList(L)空のリストEmpty(L)であるか否かを判定する
//線形テーブルの長さを求めるListLength(L)出力線形テーブルDispList(L)あるデータ要素値GetElem(L,i,e)を求める
//LocateElem(L,e)挿入データ要素ListInsert(L,i,e)削除データ要素ListDelete(L,i,e)
#include <stdio.h>
#include <malloc.h>
#include "list.h"

//        
void CreateList(SqList *&L, ElemType a[], int n)
{
    int i;
    L=(SqList *)malloc(sizeof(SqList));
    for (i=0; i<n; i++)
        L->data[i]=a[i];
    L->length=n;
}

//      InitList(L)
void InitList(SqList *&L)   //     
{
    L=(SqList *)malloc(sizeof(SqList));
    //          
    L->length=0;
}

//     DestroyList(L)
void DestroyList(SqList *&L)
{
    free(L);
}

//       ListEmpty(L)
bool ListEmpty(SqList *L)
{
    return(L->length==0);
}

//       ListLength(L)
int ListLength(SqList *L)
{
    return(L->length);
}

//     DispList(L)
void DispList(SqList *L)
{
    int i;
    if (ListEmpty(L)) return;
    for (i=0; i<L->length; i++)
        printf("%d ",L->data[i]);
    printf("
"); } // GetElem(L,i,e) bool GetElem(SqList *L,int i,ElemType &e) { if (i<1 || i>L->length) return false; e=L->data[i-1]; return true; } // LocateElem(L,e) int LocateElem(SqList *L, ElemType e) { int i=0; while (i<L->length && L->data[i]!=e) i++; if (i>=L->length) return 0; else return i+1; } // ListInsert(L,i,e) bool ListInsert(SqList *&L,int i,ElemType e) { int j; if (i<1 || i>L->length+1) return false; // false i--; // for (j=L->length; j>i; j--) // data[i..n] L->data[j]=L->data[j-1]; L->data[i]=e; // e L->length++; // 1 return true; // true } // ListDelete(L,i,e) bool ListDelete(SqList *&L,int i,ElemType &e) { int j; if (i<1 || i>L->length) // false return false; i--; // e=L->data[i]; for (j=i; j<L->length-1; j++) // data[i..n-1] L->data[j]=L->data[j+1]; L->length--; // 1 return true; // true }

--main.cpp
//テストプログラムの実装
int main()
{
    SqList *sq;
    ElemType x[6]= {5,8,7,2,4,9};
    CreateList(sq, x, 6);
    DispList(sq);
    return 0;
}