自用备份ing

#include <iostream>
#include <fstream>
#include <string>
using namespace std;

// 定义结构体
typedef struct Node
{
    int data;
    Node* next;
} LNode,*LinkList;


// 创建一个空的循环链表
Node* createList(int n)
{
    Node* head = new Node();
    head->data = 1;
    Node* prev = head;
    for (int i = 2; i <= n; i++)
    {
        Node* newNode = new Node();
        newNode->data = i;
        prev->next = newNode;
        prev = newNode;
    }
    prev->next = head; // 形成环
    cout<<"成功创建链表"<<endl;
    return head;
}

// 创建一个单向循环链表并读取文件
/*void CreateList(Node* &L,const std::string& filename)
{
    std::ifstream file(filename);
    L=new Node;
    L->next=NULL;
    L = nullptr; // 初始化链表为空
    Node* tail = nullptr; // 用于跟踪链表的尾部
    int value;

    // 读取文件并创建链表
    while (file >> value)
    {

    }

    file.close();
}
}*/

//删除相应的节点
void ListDelete(Node*& current)
{
    Node* temp = current;
    current = current->next;
    delete temp;
}

void Next(Node*& current)
{
    current = current->next;
}

//查询某人的信息
void getCharacter()
{

}

//打印所有人的信息
void PrintCharacter(int n)
{
    int current;
    for(int j=0; j <= n; j++)
    {

    }
    cout<<"现在总人数为"<<current;
}

void Josephus(int n, int m)
{
    Node* head = createList(n); // 创建环形链表
    Node* current = head;
    for (int i = 0; i < n - 1; i++)
    {
        for (int j = 0; j < m - 1; j++)
        {
            Next(current);
        }
        cout << "出列的人是: " << current->next->data << endl;
        ListDelete(current->next);
        cout<<"现在总人数为"<<n-i<<endl;
    }
    cout << "最后留下的人是: " << current->data << endl;
}

int main()
{
    int n, m;
    cout << "请输入总人数n和报数间隔m: ";
    cin >> n >> m;
    cout<<"总人数"<<n<<",报数间隔"<<m<<endl;
    //PrintCharacter();
    Josephus(n, m);
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值