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

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

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

2019-11-10 23:14:32
字體:
來源:轉載
供稿:網友

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}

上一篇:排序方法簡單匯總

下一篇:母牛的故事

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 正宁县| 宁陕县| 武鸣县| 千阳县| 濮阳市| SHOW| 富蕴县| 耿马| 左贡县| 桂东县| 奉新县| 刚察县| 洪江市| 裕民县| 彩票| 门源| 辛集市| 永顺县| 孟津县| 怀集县| 苍溪县| 肃北| 萍乡市| 休宁县| 高唐县| 登封市| 甘德县| 宁化县| 东乡| 翼城县| 禄劝| 沅江市| 喀什市| 长宁县| 色达县| 桂平市| 邓州市| 伊川县| 丰原市| 上林县| 宁河县|