4 2 順序表操作集 20分

2021-07-24 10:33:20 字數 2478 閱讀 4552

本題要求實現順序表的操作集。

函式介面定義:

list makeempty();

position find( list l, elementtype x );

bool insert( list l, elementtype x, position p );

bool delete( list l, position p );

其中list結構定義如下:

typedef

int position;

typedef

struct lnode *list;

struct lnode ;

各個操作函式的定義為:

list makeempty():建立並返回乙個空的線性表;

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

bool insert( list l, elementtype x, position p ):將x插入在位置p並返回true。若空間已滿,則列印「full」並返回false;如果引數p指向非法位置,則列印「illegal position」並返回false;

bool delete( list l, position p ):將位置p的元素刪除並返回true。若引數p指向非法位置,則列印「position p empty」(其中p是引數值)並返回false。

裁判測試程式樣例:

#include

#include

#define maxsize 5

#define error -1

typedef

enum bool;

typedef

int elementtype;

typedef

int position;

typedef

struct lnode *list;

struct lnode ;

list makeempty();

position find( list l, elementtype x );

bool insert( list l, elementtype x, position p );

bool delete( list l, position p );

int main()

scanf("%d", &n);

while ( n-- )

scanf("%d", &n);

while ( n-- )

return0;}

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

輸入樣例:61

2345

6365

12-16

輸出樣例:

full insertion error: 6 is not in.

finding error: 6 is not in.

5 is at position 0.

1 is at position 4.

position -1 empty deletion error.

full insertion error: 0 is not in.

position 6 empty deletion error.

full insertion error: 0 is not in.

———-**參考——–

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

list makeempty()

position find( list l, elementtype x )

}//沒想到找不到用怎麼才能輸入error,而找的不用輸出,用乙個if就可以了,第二次再看,不能用以下程式,因為這樣i始終是

//大於l->last的,所以始終返回error;應該直接return error,因為如果找到了,return之後就不會執行到這裡了

// if (i>l->last)

// else

return error;

}bool insert( list l, elementtype x, position p )

//插入判斷不是p<0 || p>maxsize-1

if(p<0 || p>(l->last+1))

int i;

//插入雖然是後移,但是要是從後開始移,不要搞錯了,錯誤:for(i = p;i <= l->last;i++)

for(i = l->last;i >= p;i--)

l->data[p] = x;

l->last++;

return

true;

}bool delete( list l, position p )

int i;

for(i = p ; i <= l->last;i++)

l->last--;

return

true;

}

4 2 順序表操作集 20分

本題要求實現順序表的操作集。list makeempty position find list l,elementtype x bool insert list l,elementtype x,position p bool delete list l,position p 其中list結構定義如下...

4 2 順序表操作集 20分 PTA

本題要求實現順序表的操作集。list makeempty position find list l,elementtype x bool insert list l,elementtype x,position p bool delete list l,position p 其中list結構定義如下...

順序表操作集 20 分

本題要求實現順序表的操作集。list makeempty position find list l,elementtype x bool insert list l,elementtype x,position p bool delete list l,position p 其中list結構定義如下...