/*
*檔名稱:第四周專案1 建立單鏈表
*作 者:葛惠文
*完成日期:2023年10月1日
*版 本 號:v1.0
*問題描述:定義單鏈表儲存結構,用頭插法和尾插法建立單鏈表,並顯示建立好以後的結果
*/
建立單鏈表程式如下:
#include#include #define maxsize 50
typedef int elemtype;
typedef struct
sqlist;
void createlist(sqlist *&l,elemtype a,int n);
void initlist(sqlist *&l);
void destroylist(sqlist *&l);
bool listempty(sqlist *l);
int listlength(sqlist *l);
void displist(sqlist *l);
bool getelem(sqlist *l,int i,elemtype &e);
int locateelem(sqlist *l,elemtype e);
bool listinsert(sqlist *&l,int i,elemtype e);
bool listdelete(sqlist *&l,int i,elemtype &e);
int main()
; createlistf(l1, a, 8);
printf("頭插法建表結果:");
displist(l1);
createlistr(l2, a, 6);
printf("尾插法建表結果:");
displist(l2);
destroylist(l1);
destroylist(l2);
return 0;
}//建立順序表
void createlist(sqlist *&l,elemtype a,int n)
//初始化線性表initlist
void initlist(sqlist *&l)
//銷毀線性表destroylist
void destroylist(sqlist *&l)
//判定是否為空表listempty
bool listempty(sqlist *l)
//求線性表的長度listlength
int listlength(sqlist *l)
//輸出線性表displist
void displist(sqlist *l)
//求某個資料元素值getelem
bool getelem(sqlist *l,int i,elemtype &e)
//按元素值查詢locateelem
int locateelem(sqlist *l,elemtype e)
//插入資料元素listinsert
bool listinsert(sqlist *&l,int i,elemtype e)
//刪除資料元素listdelete
bool listdelete(sqlist *&l,int i,elemtype &e)
第四周專案1 建立單鏈表
定義單鏈表儲存結構,用頭插法和尾插法建立單鏈表,並顯示建立好以後的結果。請在下面 的基礎上開展工作 include include typedef int elemtype typedef struct lnode 定義單鏈表結點型別 linklist void createlistf linkli...
第四周專案1 建立單鏈表
煙台大學計算機與控制工程學院 作 者 孫瀟 完成日期 2015年10月5號 問題描述 定義單鏈表儲存結構,用頭插法和尾插法建立單鏈表,並顯示建立好以後的結果。輸入描述 若干資料 程式輸出 輸出8個以頭插法建立的鍊錶資料和6個以尾插法建立的鍊錶資料。include include typedef in...
第四周專案1 建立單鏈表
問題及 檔名稱 鍊錶的基本運算 完成日期 2015年10月6日 問題描述 定義單鏈表儲存結構,用頭插法和尾插法建立單鏈表,並顯示建立好以後的結果 輸入描述 無 程式輸出 測試結果 include include typedef int elemtype typedef struct lnode 定義...