博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[1197]约瑟夫问题 (循环链表)SDUT
阅读量:5952 次
发布时间:2019-06-19

本文共 1334 字,大约阅读时间需要 4 分钟。

约瑟夫问题

Time Limit: 1000ms   Memory limit: 65536K  有疑问?点这里^_^

题目描述

n个人想玩残酷的死亡游戏,游戏规则如下: 
n个人进行编号,分别从1到n,排成一个圈,顺时针从1开始数到m,数到m的人被杀,剩下的人继续游戏,活到最后的一个人是胜利者。
请输出最后一个人的编号。

输入

输入n和m值。

输出

输出胜利者的编号。

示例输入

5 3

示例输出

4
 
 
#include 
#include
struct node{ int data; struct node *next;};int n,m;struct node *creat()//循环链表的建立{ struct node *head,*tail,*p; int i; head=(struct node *)malloc(sizeof(struct node)); head->next=NULL; head->data=1;//此处头结点并不是虚节点 tail=head; for(i=2;i<=n;i++) { p=(struct node *)malloc(sizeof(struct node)); p->data=i; p->next=NULL; tail->next=p; tail=p; } tail->next=head;//让最后一个节点指向头结点(循环链表建立的关键) return head;};void baoshu(struct node *head)//报数过程的操作{ int num=0;//猴子报数的计数变量 int count=0;//统计被杀的人的个数 struct node *p,*q; q=head; while(q->next!=head) q=q->next; p=head; while(count!=n-1) { num++; if(num%m==0)//数到m的人被删 { q->next=p->next; free(p); p=q->next; count++; } else { q=p; p=p->next; } } printf("%d\n",q->data);}int main(){ struct node *head; scanf("%d %d",&n,&m); head=creat(); baoshu(head); return 0;}

转载于:https://www.cnblogs.com/jiangyongy/p/3971603.html

你可能感兴趣的文章
Android Intent传递对象为什么要序列化?
查看>>
数论之 莫比乌斯函数
查看>>
linux下查找某个文件位置的方法
查看>>
python之MySQL学习——数据操作
查看>>
懒加载——实现原理
查看>>
【个人作业】单词链
查看>>
Harmonic Number (II)
查看>>
长连接、短连接、长轮询和WebSocket
查看>>
day30 模拟ssh远程执行命令
查看>>
做错的题目——给Array附加属性
查看>>
Url.Action取消字符转义
查看>>
K8S调度之标签选择器
查看>>
JQuery选择器大全
查看>>
Gamma阶段第三次scrum meeting
查看>>
python3之装饰器修复技术@wraps
查看>>
[考试]20150606
查看>>
Javascript_备忘录5
查看>>
Can’t create handler inside thread that has not called Looper.prepare()
查看>>
敏捷开发方法综述
查看>>
Hadoop数据操作系统YARN全解析
查看>>