I - 约瑟夫问题(c++)

I - 约瑟夫问题

Description

n个人想玩残酷的死亡游戏,游戏规则如下:

n个人进行编号,分别从1到n,排成一个圈,顺时针从1开始数到m,数到m的人被杀,剩下的人继续游戏,活到最后的一个人是胜利者。

请输出最后一个人的编号。

Input

输入n和m值。

Output

输出胜利者的编号。

Sample

Input 

5 3

Output 

4

Hint

//约瑟夫问题 c++版
#include<bits/stdc++.h>
using namespace std;
struct node
{
    int data;
    struct node*next;
};
int main()
{
    node *head,*tail,*p;
    node *pre;
    head=new node;
    head->data=1;
    head->next=NULL;
    tail=head;
    //tail存的是插入的上一个的地址;
    int n,m;
    cin>>n>>m;
    for(int i=2;i<=n;i++)
    {
        p=new node;
        p->data=i;//p指向的数据赋值i;
        p->next=NULL;//p指向的对象的next为空;
        tail->next=p;//tail指针指向的对象的下一个为p所指向的对象
        tail=p;//tail指向p指向的对象;
    }
    //与c语言版本的比较;
    //tail=head;
    //for(int i=1;i<=n;i++)
    //{
    //    struct node*p=(struct node*)malloc(sizeof(struct node));
    //    p->no=i;
    //    p->next=NULL;
    //    tail->next=p;
    //    tail=p;
    //}
    tail->next=head;
    pre=head;
    while(pre->next!=head)
    {
        pre=pre->next;

    }
    int an=0;//记录当前多少人被杀了;
    int num=0;//记录当前编号;
    while(an!=n-1)
    {
        num++;
        if(num==m)
        {
            pre->next=head->next;
            head->next=NULL;
            head=pre->next;
            num=0;
            an++;
        }
        else
        {
            pre=pre->next;
            head=head->next;
        }
    }
    cout<<head->data<<endl;
    return 0;
}

第一轮:3被杀第二轮:1被杀第三轮:5被杀第四轮:2被杀

#include<stdio.h>
#include<string.h>
#include<math.h>
#include <stdlib.h>

struct node
{
    int no;
    struct node*next;
};//建立链表;

int main()
{
    int n,m;
    scanf("%d %d",&n,&m);
    struct node *head=(struct node*)malloc(sizeof(struct node));
    struct node *tail=(struct node*)malloc(sizeof(struct node));
    head->next=NULL;
    //normal;
    tail=head;
    for(int i=1;i<=n;i++)
    {
        struct node*p=(struct node*)malloc(sizeof(struct node));
        p->no=i;
        p->next=NULL;
        tail->next=p;
        tail=p;
    }
    tail->next=head->next;
    struct node*q=tail;
    int an=0;
    while(q->next!=q)//q的后一个不是q可以理解为q后仍然有人没被杀
    {
        an++;
        if(an%m==0)//模拟m=3,an++=1,2,3。3%3==0,3 was killed;
        {q->next=q->next->next;an=0;}//next的next;
        else q=q->next;

    }
    printf("%d",q->no);
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值