鏈式表操作集 20分

2021-10-01 15:12:47 字數 3437 閱讀 2211

本題要求實現鏈式表的操作集。

函式介面定義:

position find

( list l, elementtype x )

;list insert

( list l, elementtype x, position p )

;list delete

( list l, position p )

;

其中list結構定義如下:

typedef

struct lnode *ptrtolnode;

struct lnode

;typedef ptrtolnode position;

typedef ptrtolnode list;

各個操作函式的定義為:

position find( list l, elementtype x ):返回線性表中首次出現x的位置。若找不到則返回error;

list insert( list l, elementtype x, position p ):將x插入在位置p指向的結點之前,返回鍊錶的表頭。如果引數p指向非法位置,則列印「wrong position for insertion」,返回error;

list delete( list l, position p ):將位置p的元素刪除並返回鍊錶的表頭。若引數p指向非法位置,則列印「wrong position for deletion」並返回error。

裁判測試程式樣例:

#include

#include

#define error null

typedef

int elementtype;

typedef

struct lnode *ptrtolnode;

struct lnode

;typedef ptrtolnode position;

typedef ptrtolnode list;

position find

( list l, elementtype x )

;list insert

( list l, elementtype x, position p )

;list delete

( list l, position p )

;int

main()

scanf

("%d"

,&n)

;while

( n--)}

l =insert

(l, x,

null);

if( l==error )

printf

("wrong answer\n");

else

printf

("%d is inserted as the last element.\n"

, x)

; p =

(position)

malloc

(sizeof

(struct lnode));

tmp =

insert

(l, x, p);if

( tmp!=error )

printf

("wrong answer\n");

tmp =

delete

(l, p);if

( tmp!=error )

printf

("wrong answer\n");

for( p=l; p; p = p->next )

printf

("%d "

, p->data)

;return0;

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

輸入樣例:

6122

487102

421287

5

輸出樣例

2 is found and deleted.

12 is found and deleted.

87 is found and deleted.

finding error:

5 is not in.

5 is inserted as the last element.

wrong position for insertion

wrong position for deletion104

25

思路:

插入:頭插,中插,尾插(p==null),非法位置插入(不在鍊錶中)

刪除:頭刪,中刪,非法位置刪除(鍊錶為空和不在鍊錶)

position find

( list l, elementtype x )

l=l->next;

}return error;

//既包含了沒有找到l執行到空也包含了l本身為空的情況

}list insert

(list l, elementtype x, position p)

p2 = p1->next;

while

(p2 !=

null

)//在中間插入

p1 = p2;

p2 = p1->next;}if

(p ==

null

)//p==null時插入,插入的為數為最後乙個數

//因為上邊迴圈出來後p2==null;故p1變成了最後乙個元素

//p不在鍊錶中

else

}//以下為插入的另一種寫法

/*list insert( list l, elementtype x, position p )

//在中間插入

while(l->next!=p&&l->next)

l=l->next;

//迴圈結束後可能是因為遍歷完後找到p或p沒有找到

if(l->next==p)//找到p

if(p==null)

}//p為空

else//沒有找到p

}*/list delete

( list l, position p )

//刪除中間

while

(p2!=

null

)else

p2=p1->next;

}//非法位置刪除,包括鍊錶為空和不在鍊錶中的位置

printf

("wrong position for deletion\n");

return error;

}

6 5 鏈式表操作集 20分

本題要求實現鏈式表的操作集。函式介面定義 position find list l,elementtype x list insert list l,elementtype x,position p list delete list l,position p 其中list結構定義如下 typedef...

6 5 鏈式表操作集 20分

函式介面定義 position find list l,elementtype x list insert list l,elementtype x,position p list delete list l,position p 其中list結構定義如下 typedef struct lnode ...

6 5 鏈式表操作集 20分

本題要求實現鏈式表的操作集。position find list l,elementtype x list insert list l,elementtype x,position p list delete list l,position p 其中list結構定義如下 typedef struct...