第四周專案1 兩種方法建立單鏈表

2021-08-08 19:16:35 字數 667 閱讀 8262

/*

*檔名稱:渣.cpp

*作 者:朱坤昂

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

*版 本 號:v1.0

* *問題描述:順序表基本演算法的實現

*輸入描述:一組數

*程式輸出:見程式執行截圖

*/#includeusing namespace std;

typedef struct node

danlist;

danlist *head,*head1;

struct node * creat0(int num)///尾插法

return head;

}struct node * creat1(int num)///頭插法

return head1;

}void display(danlist *p)

cout

}int main()

執行結果截圖:

知識點總結:

線性表的儲存方式!

學習心得:

天行健,君子以自強不息;地勢坤,君子以厚德載物!

第四周專案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 定義...