#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 人评分
【亲和数】 (C语言代码)浏览:588 |
C语言程序设计教程(第三版)课后习题11.5 (C语言代码)浏览:932 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:1000 |
WU-小九九 (C++代码)浏览:1713 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:638 |
数对 (C语言代码)浏览:762 |
关于float,double变量的几点说明浏览:1926 |
模拟计算器 (C++代码)浏览:885 |
演讲大赛评分 (C语言代码)浏览:1696 |
C语言程序设计教程(第三版)课后习题9.3 (C语言代码)浏览:650 |