第三週 專案四 順序表的應用

2021-07-22 23:44:37 字數 2397 閱讀 7429

/* 

*檔名稱:ac.cbp

*作 者:李良涵

*完成日期:2023年9月22日

*版 本 號:v1.0

* *問題描述:順序表應用

*輸入描述:無

*程式輸出:經過調整的資料

*/

**#include #include #include "ac.h"

//用陣列建立線性表

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

//初始化線性表initlist(l)

void initlist(sqlist *&l) //引用型指標

//銷毀線性表destroylist(l)

void destroylist(sqlist *&l)

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

bool listempty(sqlist *l)

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

int listlength(sqlist *l)

//輸出線性表displist(l)

void displist(sqlist *l)

//求某個資料元素值getelem(l,i,e)

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

//按元素值查詢locateelem(l,e)

int locateelem(sqlist *l, elemtype e)

//插入資料元素listinsert(l,i,e)

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

//刪除資料元素listdelete(l,i,e)

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

//移動結束後,奇數居左,偶數居右

void move(sqlist *&l)

} //待迴圈上去後,繼續查詢,並在必要時交換

} main.cpp

#include "ac.h"

#include //用main寫測試**

int main()

; createlist(sq, a, 10);

printf("操作前 ");

displist(sq);

move(sq);

printf("操作後 ");

displist(sq);

return 0;

} ac.h

#ifndef list_h_included

#define list_h_included

#define maxsize 50

typedef int elemtype;

typedef struct

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

void move(sqlist *&l);

#endif // list_h_included

執行結果

心得體會:

對順序表更加熟練

第三週 專案四 順序表應用

問題描述及 完成日期 2016.9.17 問題描述 定義乙個採用順序結構儲存的線性表,設計演算法完成下面的工作 1 刪除元素在 x,y 之間的所有元素,要求演算法的時間複雜度為o n 空間複雜度為o 1 2 將所在奇數移到所有偶數的前面,要求演算法的時間複雜度為o n 空間複雜度為o 1 1.刪除元...

第三週 專案四 順序表應用

檔名稱 aa.cpp 完成日期 2016年9月13日 版本號 v1.0 問題描述 定義乙個採用順序結構儲存的線性表,刪除元素在 x,y 之間的所有元素,要求演算法的時間複雜度為o n 空間複雜度為o 1 輸入描述 線性表長度 線性表元素及刪除區間 x.y 程式輸出 刪除後的元素 main.cpp i...

第三週 專案四 順序表的應用

作 者 蘇凱祺 完成日期 2014年10月20號 版 本 號 v1.0 問題描述 將所有的奇數移到所有偶數的前面,要求演算法的時間複雜度為o n 空間複雜度為o 1 include list.h include 移動結束後,奇數居左,偶數居右 void move sqlist l 待迴圈上去後,繼續...