2、然后确定森明使用什么样的技术架构,包括命名规范等等
3、确定好自己要做那块儿,什么时候要?控制好时间节点
4、做好州野团队的沟通协作,确定哪些地方是需要别人帮助的,有哪些地方是需要你这边先做好,别人才能继续他的工作的
5、哪些地方重要,哪些地方紧急,做好时间规此迹告划
#include <stdio.h>#include <stdlib.h>
typedef struct node
{
int date
struct node *next
}LNode,*LinkList
LinkList creat(int n)/*建立循环单链表*/
{
LinkList L=NULL
LNode *s,*r=NULL
int i
for(i=1i<=ni++)
{
s=(LNode*)malloc(sizeof(LNode))
s->date=i
if(L==NULL)L=s
else r->next=s
r=s
}
r->next=L//伏孝这样总缺激稿共有10个数输出
return L
}
void josephu(LinkList L,int m)
{
LNode *p=L->next,*q
int i=1
while(p)
{
p=p->铅纯next
i++
if(i==m-1)
{
if(p->date!=p->next->date){
q=p->next
p->next=q->next
free(q)
q=NULL
p=p->next
i=1
}else{
printf("%d,",p->next->date)
free(p)
p=NULL
}
}
}
}
main()
{
LinkList L
int n,m
printf("输入猴子数")
scanf("%d",&m)
printf("输入出对数")
scanf("%d",&n)
L=creat(m)
josephu(L,n)
system("pause")
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)