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

2021-08-08 12:59:48 字數 2147 閱讀 5215

/* *檔名稱: 

*作    者:孫仁圓 

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

*版 本 號:v1.0 

* *問題描述:將所在奇數移到所有偶數的前面

*輸入描述:乙個陣列,10個資料

*程式輸出:10個資料,奇數在前,偶數在後

*/  

#include "list.h"

#include

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

void move(sqlist *&l)

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

}//用main寫測試**

int main()

;createlist(sq, a, 10);

printf("操作前 ");

displist(sq);

move(sq);

printf("操作後 ");

displist(sq);

return 0;

#include #include #include "list.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)

#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

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

檔名稱 專案4.cpp 作 者 高金豔 完成日期 2016年9月14日 版 本 號 v1.0 問題描述 將所在奇數移到所有偶數的前面,要求演算法的時間複雜度為o n 空間複雜度為o 1 輸入描述 無 程式輸出 重新排列後的線性表 標頭檔案list.h define maxsize 50 includ...

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

檔名稱 專案4.cbp 作 者 李瀟 完成日期 2016年9月17日 版 本 號 v1.0 問題描述 將所在奇數移到所有偶數的前面,要求演算法的時間複雜度為o n 空間複雜度為o 1 輸入描述 無 程式輸出 輸出調整後的線性表 標頭檔案list.h ifndef list h included de...

第三週 專案四 順序表應用 (2)

檔名稱 作 者 張翠平 完成日期 2017 年 9 月 21 日 版 本 號 v1.0 問題描述 將順序表中所有奇數移到所有偶數的前面。輸入描述 無 程式輸出 移動後的所有元素。問題及 list.h ifndef list h included define list h included defi...