1樓:匿名使用者
#include
#include
typedef struct lnode
lnode,*linklist;
linklist listinsert_l(linklist l,int i,int e)
if(!p||j>i-1)
exit(0);
s=(linklist)malloc(sizeof(lnode));
s->data=e;
s->next=p->next;
p->next=s;
l=l->next;
printf("插入後的連結串列為:\n");
while(l)
return 0;
}int listdelete_l(linklist l,int i,int b)
if(!(p->next)||j>i-1)exit(0);
q=p->next;
p->next=q->next;
b=q->data;
free(q);
l=l->next;
printf("刪除後的連結串列為:\n");
while(l)
return b;
}void main()
printf("輸入要插入的位置和數:\n");
scanf("%d%d",&j,&e);
listinsert_l(l,j,e);
printf("\n輸入要刪除的位置:\n");
scanf("%d",&i);
b=listdelete_l(l,i,b);
printf("\n刪除的數為:%d\n",b);}
2樓:匿名使用者
typedef struct node
elemsn;
viod deletenode(elemsn *h,int i)
資料結構求答案資料結構求答案
cccadcad 考察的每個知識點我都看書確認過!嚴蔚敏教材直接可找出答案 第18題 2 分 對線性表進行二分查詢時,要求線性表必須 c 順序儲存,且結點按關鍵字有序排序 第19題 2 分 下面關於b樹和b 樹的敘述中,不正確的是 c 都能有效地支援順序檢索 第20題 2 分 設輸入序列為a,b,c...
資料結構練習題 線性表操作,資料結構練習題 線性表操作
連結串列實現 include include include define len sizeof struct lnode define max 1000 typedef struct lnode linklist int createsq linklist l int insertsq linkl...
求資料結構(c語言版)題集實習題答案
我這個學期也有資料結構 我們剛做的實驗 但是和你們做的不太一樣 我這裡有一個是約瑟夫環 include define false 0 define true 1 struct node head,p1,p2,temp int main head struct node malloc sizeof s...