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

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

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

2019-11-11 00:09:47
字體:
來源:轉載
供稿:網友

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}

上一篇:lambda

下一篇:例題:判斷子串

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 广河县| 民权县| 贵南县| 察雅县| 长岭县| 辽阳市| 德钦县| 上犹县| 临邑县| 望谟县| 保定市| 灵武市| 武汉市| 通榆县| 巴林左旗| 南汇区| 绥化市| 华安县| 外汇| 新丰县| 元氏县| 嘉鱼县| 威宁| 临清市| 桂林市| 津南区| 栖霞市| 黔西| 财经| 阿图什市| 霞浦县| 龙海市| 邳州市| 广平县| 资阳市| 泗水县| 镇原县| 蚌埠市| 城口县| 米易县| 恩平市|