資料結構實踐 順序表應用(2)

2021-09-30 12:43:46 字數 961 閱讀 8522

* 檔名稱:main.cpp,list.cpp,list.h

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

* 版本號:vc++6.0

*

#include #include #define maxsize 50

typedef int elemtype;

typedef struct

sqlist;

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

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

void move(sqlist *&l);

#include"list.h"

void move(sqlist *&l)

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

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

void displist(sqlist *l) 

#include"list.h"

int main()

;    createlist(sq, a, 10);

printf("操作前 ");

displist(sq);

move(sq);

printf("操作後 ");

資料結構實踐專案 順序表

本組專案針對 資料結構基礎系列 2 線性表 課程第1 7節 1.導學 2.線性表的邏輯結構與基本運算 3.線性表的順序儲存結構 4.建立線性表的實現 暨引數型別的討論 5.順序表基本運算的實現 6.線性表順序儲存的應用 7.實踐指導 用程式實踐演算法 include 必要的庫檔案包括 define ...

資料結構實踐 順序表的基本運算2

檔名稱 cpp1.cpp 版本號 v6.0 增加求線性表l中指定位置的某個資料元素getelem的運算,以及增加查詢元素locateelem的運算 程式輸出 線性表的結果 include include define maxsize 50 maxsize將用於後面定義儲存空間的大小 typedef ...

順序表應用5 有序順序表歸併(資料結構)

time limit 100 ms memory limit 880 kib submit statistic problem description 已知順序表a與b是兩個有序的順序表,其中存放的資料元素皆為普通整型,將a與b表歸併為c表,要求c表包含了a b表裡所有元素,並且c表仍然保持有序。i...