J.H


私信TA

用户名:dotcpp0649969

访问量:3448

签 名:

等  级
排  名 78
经  验 9401
参赛次数 1
文章发表 135
年  龄 0
在职情况 学生
学  校 桂林理工大学
专  业 计算机科学与技术

  自我简介:

TA的其他文章

解题思路:

注意事项:

参考代码:

#include<stdio.h>

#include<stdlib.h>

typedef struct student

{

    int id;

    int score;

    struct student* next;

}Linklist;

Linklist* creat_linklist(int n)

{

    Linklist* head,*p,*tail;

    head = (Linklist*)malloc(sizeof(Linklist));

    if (head == NULL)

        return NULL;

    head->next = NULL;

    tail = head;

    int i;

    for (i = 0; i < n; i++)

    {

        p = (Linklist*)malloc(sizeof(Linklist));

        if (p == NULL)

            return head;

        scanf("%d %d", &p->id, &p->score);

        p->next = tail->next;

        tail->next = p;

        tail = p;

    }

    return head;

}

int deleteafter_linklist(Linklist* p)

{

    Linklist* r;

    if (!p)

        return 0;

    r = p->next;

    if (!r)

        return 0;

    p->next = r -> next;

    free(r);

    return 1;

}

int deleteno_linklist(Linklist* head, Linklist* p)

{

    Linklist* r;

    if (p->next != NULL)

    {

        p->id = p->next->id;

        p->score = p->next->score;

        return deleteafter_linklist(p);

    }

    else

    {

        r = head;

        while (r->next != p)

        {

            r = r->next;

        }

        return deleteafter_linklist(r);

    }

}

int main()

{

    int m, n,flag;

    Linklist* p1, * p2,*a,*b;

    scanf("%d %d", &n, &m);

    p1 = creat_linklist(n);

    p2 = creat_linklist(m);

    a = p1->next;

    while (a)

    {

        flag = 0;

        b = p2->next;

        while (b)

        {

            if (a->id == b->id)

            {

                flag = 1;

                break;

            }

            b = b->next;

        }

        if (flag)

        {

            deleteno_linklist(p1, a);

            n--;

        }

        else

        {

            a = a->next;

        }

    }

    printf("%d\n", n);

    a = p1->next;

    while (a != NULL)

    {

        printf("%d %d\n", a->id, a->score);

        a = a->next;

    }

    return 0;

}


 

0.0分

0 人评分

看不懂代码?想转换其他语言的代码? 或者想问其他问题? 试试问问AI编程助手,随时响应你的问题:

编程语言转换

万能编程问答  

代码解释器

代码纠错

SQL生成与解释

  评论区