寒假自主學習專案一 鍊錶(2 查詢)

2021-06-28 14:22:09 字數 729 閱讀 7343

/*

*檔名稱:test.cpp

*完成日期:2023年 2月 4日

*版本號:v1.0

*問題描述:編寫函式void search(int x),輸出鍊錶中是否有值為x的結點。

*輸入描述:

*程式輸出:

*/

#include  using namespace std;

struct node

;node *head=null; //將煉表頭定義為全域性變數,以便於後面操作

void make_list2(); //建立鍊錶

void search(int x); //輸出鍊錶中是否有值為x的結點

int main( )

void make_list2()

else

q->next=p;

q=p;

cin>>n;

}}void search(int x)

}return;

}

示例;

學習心得:

簡單的查詢而已~表示和陣列差不多~~~

寒假集訓作業(2) 鍊錶

這真是令人頭疼!include include includeusing namespace std struct node struct node creat2 int n return head int main include include includeusing namespace st...

寒假專案1 動態鍊錶體驗(改造)(1

檔名稱 test.cpp 作 者 劉暢 完成日期 2015 年 1 月 21 日 版 本 號 v1.0 問題描述 改造博文示例中的鍊錶。輸入描述 輸入n n為結點資料 程式輸出 輸出動態鍊錶 1 編寫 make list2 函式建立鍊錶,使建立鍊錶時,後輸入的資料,將新輸入的數字對應的結點放在鍊錶末...

鍊錶的學習(2)

實現的鍊錶操作 1 指定位置刪除和插入。2 merge兩個鍊錶 name linkedlist author bryant xw date 2018 09 27 11.11.53 includeusing namespace std typedef struct node node,linklist...