Java教程

小组徐瑞雄

本文主要是介绍小组徐瑞雄,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

我和我的

dsfsdfdsfds.

dgdfg

image

鬼地方高浮雕

#include<stdio.h>
#include<stdlib.h>
struct node
{
int data;
struct node *next;
};
int main()
{
int n,m,i;
struct node *head,*p,*t;
head=(struct node *)malloc(sizeof(struct node ));
head->next=NULL;
t=head;
head->data=1;
scanf("%d %d",&n,&m);
for(i=2;i<=n;i++)
{
p=(struct node *)malloc(sizeof(struct node));
p->data=i;
p->next=NULL;
t->next=p;
t=p;
}
t->next=head;
p=t;
while(p->next!=p)
{
for(i=0;i<m-1;i++)p=p->next;
p->next=p->next->next;
}
printf("%d\n",p->data);
return 0;
}

这篇关于小组徐瑞雄的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!