Everglow


私信TA

用户名:uq_69525351579

访问量:57

签 名:

等  级
排  名 5652
经  验 1512
参赛次数 0
文章发表 1
年  龄 0
在职情况 学生
学  校
专  业

  自我简介:

TA的其他文章

解题思路:设置一个结构体 存储n个数字的原始编号,创建链表把n个数字用后插法存入链表,然后对报数得3 的节点删除,并从下一个节点开始重新报数,最后返回最后剩下的那个节点的原始编号

注意事项:

参考代码:

#include<stdio.h>

#include<stdlib.h>

typedef struct people{

    int number;

    struct people *next;

}*node,Node;


node creat(int n){

    node h;

    h=(node)malloc(sizeof(Node));

    h->next=NULL;

    node q=h;

    node p;

    for(int i=1;i<=n;i++){

        p=(node)malloc(sizeof(Node));

        (*p).number=i;

        p->next=q->next;

        q->next=p;

        q=p;

    }

    q->next=h->next;

    return (h);

}


void function(node l1,int baoshu){

    node p=l1->next;

    int count=0;

    free(l1);

    node q=NULL;

    while(p->next!=p){

        for(int i=1;i<=baoshu-2;i++)

            p=p->next;

            q=p->next;

            p->next=q->next;

            p=p->next;

            free(q);

    }

    count=p->number;

    printf("%d",count);

    free(p);

}


int main()

{   int n;

    scanf("%d",&n);

    node L;

    int baoshu=3;

    L=creat(n);

    function(L,baoshu);

    return 0;

}


 

0.0分

0 人评分

  评论区

  • «
  • »