国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

數據結構上機測試2-1:單鏈表操作A

2019-11-11 00:18:05
字體:
來源:轉載
供稿:網友

PRoblem Description

輸入n個整數,先按照數據輸入的順序建立一個帶頭結點的單鏈表,再輸入一個數據m,將單鏈表中的值為m的結點全部刪除。分別輸出建立的初始單鏈表和完成刪除后的單鏈表。

Input

第一行輸入數據個數n;第二行依次輸入n個整數;第三行輸入欲刪除數據m。

Output

第一行輸出原始單鏈表的長度;第二行依次輸出原始單鏈表的數據;第三行輸出完成刪除后的單鏈表長度;第四行依次輸出完成刪除后的單鏈表數據。

Example Input

1056 25 12 33 66 54 7 12 33 1212

Example Output

1056 25 12 33 66 54 7 12 33 12756 25 33 66 54 7 3301
 #include<stdio.h>
02#include<stdlib.h>
03#include<string.h>
04struct node
05{
06    int data;
07    struct node *next;
08};
09struct node *creat(int n)
10{
11    struct node *head,*p,*q;
12    int i;
13    head=(struct node *)malloc(sizeof(struct node));
14    head->next=NULL;q=head;
15    for(i=0;i<n;i++)
16    {
17        p=(struct node *)malloc(sizeof(struct node));
18        scanf("%d",&p->data);
19        p->next=NULL;q->next=p;
20        q=p;
21    }
22    q=head->next;
23    return head;
24};
25int del(struct node *head,int n,int m)
26{
27    struct node *p,*q;
28    p=head;
29    while(p->next!=NULL)
30    {
31            if(p->next->data==m)
32            {
33                q=p->next;
34                p->next=q->next;
35                free(q);
36                n--;               
37            }
38            else
39                p=p->next;   
40    }
41    return n;
42}
43void show(struct node *head)
44{
45    struct node *p;
46    p=head->next;
47    while(p!=NULL)
48    {
49        if(p->next!=NULL)
50            printf("%d ",p->data);
51        else
52            printf("%d/n",p->data);
53        p=p->next;
54    }
55}
56void main()
57{
58    int n,m,flag;
59    struct node *head;
60    scanf("%d",&n);
61    head=creat(n);
62    scanf("%d",&m);
63    printf("%d/n",n);
64    show(head);
65    flag=del(head,n,m);
66    printf("%d/n",flag);
67    show(head);
68}

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 灵寿县| 丰都县| 鄂州市| 舟山市| 阳西县| 承德市| 新宾| 沁源县| 汝州市| 秦安县| 黄浦区| 禹州市| 潜江市| 泰来县| 宁安市| 高碑店市| 邳州市| 乌鲁木齐县| 五家渠市| 雷波县| 西峡县| 西贡区| 汽车| 额敏县| 古蔺县| 建昌县| 将乐县| 应城市| 怀远县| 榆社县| 永登县| 隆德县| 花莲县| 蓬莱市| 大丰市| 香河县| 康平县| 沾化县| 上林县| 攀枝花市| 清新县|