第三週 專案2 建設「順序表」演算法庫

2021-09-30 12:27:19 字數 2310 閱讀 6989

#include using namespace std;

#include #define maxsize 50

typedef int elemtype;

typedef struct

sqlist;

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)

bool listinsert(sqlist *l,int i,elemtype e); //插入資料元素listinsert

bool listdelete(sqlist *l,int i); //刪除資料元素listinsert

void destroylist(sqlist *&l); //銷毀線性表destroylist

#include"list.h"

int main()

; elemtype a;

int s1,s2,s3,s4,s5;

int loc;

createlist(sq, x, 6);

displist(sq);

printf("表長度:%d\n", listlength(sq)); //測試求長度

cout<

cin>>s2;

if(getelem(sq, s2, a))

cout

if((loc=locateelem(sq, s1))>0)

cout>s4;

listinsert(sq,s4,s3);

displist(sq);

cout<

cin>>s5;

listdelete(sq,s5);

displist(sq);

destroylist(sq);

return 0;

}

#include"list.h"

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)

bool listinsert(sqlist *l,int i,elemtype e) //插入資料元素listinsert

bool listdelete(sqlist *l,int i) //刪除資料元素listdelete

第三週 專案2 建設順序表演算法庫

檔名稱 cpp.cpp 作者 王超 完成日期 2015.9.18 問題描述 建設順序表演算法庫 include include define maxsize 50 typedef int elemtype typedef struct sqlist void createlist sqlist l,...

第三週專案2 建設「順序表」演算法庫

問題及 檔名稱 專案2.cbp 作 者 完成日期 2015年9月16日 版 本 號 v1.0 問題描述 請採用程式的多檔案組織形式,在專案1的基礎上,建立 如上的兩個檔案,另外再建立乙個原始檔,編制main函 數,完成相關的測試工作。輸入描述 無 程式輸出 依據各個函式而定 list.h檔案 ifn...

第三週 專案2 建設「順序表」演算法庫

01.04.檔名稱 list.cpp 05.作 者 蘇凱祺 06.完成日期 2014年10月9號 07.版 本 號 v1.0 08.問題描述 建設 順序表 的演算法庫 09.list.h ifndef list h included define list h included define max...