6 1 求單鏈表元素序號 10 分

2021-10-22 17:41:26 字數 727 閱讀 4494

本題要求實現乙個函式,求帶頭結點的單鏈表中元素序號。

int locate ( linklist l, elemtype e);
l是帶頭結點的單鏈表的頭指標,e是要查詢的元素值。如果e在單鏈表中存在,函式locate返回其序號(序號從1開始);否則,返回0。

#include #include typedef int elemtype;

typedef struct lnode

lnode,*linklist;

linklist create();/* 細節在此不表 */

int locate ( linklist l, elemtype e);

int main()

/* 你的**將被嵌在這裡 */

6 1 單鏈表逆轉 20分

本題要求實現乙個函式,將給定的單鏈表逆轉。其中list結構定義如下 typedef struct node ptrtonode struct node typedef ptrtonode list 定義單鏈表型別 l是給定單鏈表,函式reverse要返回被逆轉後的鍊錶。裁判測試程式樣例 includ...

6 1 單鏈表逆轉 20分

本題要求實現乙個函式,將給定的單鏈表逆轉。函式介面定義 list reverse list l 其中list結構定義如下 typedef struct node ptrtonode struct node typedef ptrtonode list 定義單鏈表型別 l是給定單鏈表,函式revers...

6 1 單鏈表逆轉 20 分

本題要求實現乙個函式,將給定的單鏈表逆轉。list reverse list l 其中list結構定義如下 typedef struct node ptrtonode struct node typedef ptrtonode list 定義單鏈表型別 l是給定單鏈表,函式reverse要返回被逆轉...