WannaBe


私信TA

用户名:dotcpp0704046

访问量:170

签 名:

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

  自我简介:

TA的其他文章

#include<stdio.h>

#include<stdlib.h>


typedef struct student{

    int number;

    struct student*next;

}node;


node *create(int n);

void function(node *head,int num);


int main()

{

    int n,m=3;

    node *head;

    scanf("%d",&n);

    

    head=create(n);

    function(head,m);

    

    return 0;

}


node* create(int n)

{

    node *head;

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

    head->next=NULL;

    node *q=head;

    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=head->next;

    

    return head;

}


void function(node*t,int n)

{

    node*p=t->next;

    free(t);

    node*q=NULL;

    

    while(p->next !=p)

    {

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

        {

            p=p->next;

        }

        

        q=p->next;

        p->next=q->next;

        

        p=p->next;   //移动到报号起点

        free(q);

    }

    printf("%d",p->number);

    return ;

}





 

0.0分

0 人评分

  评论区

  • «
  • »