第3周專案4 順序表應用問題(2)

2021-07-22 19:05:12 字數 1462 閱讀 7126

程式輸出:輸出調整後的線性表 

標頭檔案list.h**:

#ifndef list_h_included  

#define list_h_included

#define maxsize 50

#include #include 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

#endif  

功能函式檔案list.cpp**:

#include "list.h"  

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

void move(sqlist *&l)

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

}

//用main寫測試**

int main()

; createlist(sq, a, 12);

printf("操作前 ");

displist(sq);

move(sq);

printf("操作後 ");

第3周專案4 順序表應用(2)

檔名稱 h1.cpp 完成日期 2015年9月18日 版本號 vc6.0 問題描述 將所在奇數移到所有偶數的前面,要求演算法的時間複雜度為o n 空間複雜度為o 1 輸入描述 無 程式輸出 線性表的結果 include include define maxsize 50 typedef int el...

第3周專案4 順序表應用(2)

04.檔名稱 專案4.cbp 05.作 者 陳勝男 06.完成日期 2015年10月11日 07.版 本 號 v1.0 08.09.問題描述 將所在奇數移到所有偶數的前面,要求演算法的時間複雜度為o n 空間複雜度為o 1 10.輸入描述 無 11.程式輸出 輸出調整後的線性表 12.list.h ...

第3周 專案4 順序表應用(2)

檔名稱 專案4 順序表應用 2 cpp 作 者 滕健 完成日期 2016年9月15日 問題描述 定義乙個採用順序結構儲存的線性表,設計演算法完成下面的工作 將所在奇數移到所有偶數的前面,要求演算法的時間複雜度為o n 空間複雜度為o 1 輸入描述 若干資料 程式輸出 將資料為奇數的放到偶數的左邊。演...