第三週專案4 順序表應用(1)

2021-08-08 13:02:17 字數 1907 閱讀 9088

/*  

*all rights reservrd.      

*檔名稱 :test.cpp      

*版本號:v1.0      

*問題描述:刪除元素在【x,y】質檢的所有元素

問題及**:

#include #include #define maxsize 50  

typedef int elemtype;

typedef struct

sqlist;

//自定義函式宣告部分

void createlist(sqlist *&l, elemtype a, int n);

void displist(sqlist *l);

bool listempty(sqlist *l);

int listlength(sqlist *l);

bool getelem(sqlist *l,int i,elemtype &e);

int locateelem(sqlist *l, elemtype e);

void initlist(sqlist *&l);

bool listinsert(sqlist *&l,int i,elemtype e);

bool listdelete(sqlist *&l,int i,elemtype &e);

void destroylist(sqlist *&l);

void delx2y(sqlist *&l, elemtype x, elemtype y);

void createlist(sqlist *&l, elemtype a, int n) //用陣列建立線性表

void displist(sqlist *l) //輸出線性表displist(l)

bool listempty(sqlist *l) //判定是否為空表listempty(l)

int listlength(sqlist *l) //求線性表的長度listlength(l)

bool getelem(sqlist *l,int i,elemtype &e) //求某個資料元素值getelem(l,i,e)

int locateelem(sqlist *l, elemtype e) //按元素值查詢locateelem(l,e)

void initlist(sqlist *&l) //初始化線性表

bool listinsert(sqlist *&l,int i,elemtype e)

bool listdelete(sqlist *&l,int i,elemtype &e)

void destroylist(sqlist *&l)

//刪除線性表中,元素值在x到y之間的元素

void delx2y(sqlist *&l, elemtype x, elemtype y)

for (i=0; ilength; i++)

if (l->data[i]data[i]>y ) //複製不在[x, y]之間的元素

l->length=k;

}//用main寫測試**

int main()

; createlist(sq, a, 10);

printf("刪除前 ");

displist(sq);

delx2y(sq, 4, 7);

printf("刪除後 ");

displist(sq);

return 0;

}

執行結果:

第三週。專案4 順序表應用(1)

檔名稱 專案4 順序表應用 1 cpp 作 者 魏樂天 完成日期 2015年10月12日 版 本 號 v1.0 問題描述 定義乙個採用順序結構儲存的線性表,設計演算法完成下面的工作 1 刪除元素在 x,y 之間的所有元素,要求演算法的時間複雜度為o n 空間複雜度為o 1 輸入描述 若干資料 程式輸...

第三週專案4 順序表應用(1)

問題及 檔名稱 111.cpp 作 者 李曉鈺 完成日期 2016年9月17日 版 本 號 v1.0 問題描述 刪除元素在 x,y 之間的所有元素,要求演算法的時間複雜度為o n 空間複雜度為o 1 輸入描述 無 程式輸出 輸出調整後的線性表 標頭檔案list.h ifndef list h inc...

第三週專案4 順序表應用(1)

問題 檔名稱 專案4.cbp 作 者 秦緒龍 完成日期 2016年9月18日 版 本 號 v1.0 問題描述 刪除元素在 x,y 之間的所有元素,要求演算法的時間複雜度為o n 空間複雜度為o 1 輸入描述 無 程式輸出 輸出調整後的線性表 標頭檔案list.h ifndef list h incl...