皮皮网
皮皮网
pc飞艇源码

【新加坡发卡网源码】【掌握财富指标源码】【开源免费商用源码】约瑟夫环源码_约瑟夫环源代码

时间:2024-12-29 00:25:29 分类:娱乐 编辑:470400网页源码
1.用c语言实现约瑟夫环

约瑟夫环源码_约瑟夫环源代码

用c语言实现约瑟夫环

       正好之前写过基础的约瑟源码约瑟源代约瑟夫环,稍作修改就可以满足你的夫环夫环新加坡发卡网源码题目

#include <stdio.h>

       #include <stdlib.h>

       typedef struct _node {

           int id;

           int key;

           struct _node *next;

       } Linklist;

       int main() {

        int n, m;

        scanf("%d %d", &n, &m);

        int i, count = 0;

        Linklist *head = (Linklist*)malloc(sizeof(Linklist)), *tail = head;

        head->id = 1;

        scanf("%d", &head->key);

        head->next = head;

        for(i = 2; i <= n; i++) {

        Linklist *p = (Linklist*)malloc(sizeof(Linklist));

        p->id = i;

        scanf("%d", &p->key);

        p->next = head;

        tail->next = p;

        tail = p;

        }

        while(head != tail) {

        if(++count % m) {

        tail = head;

        } else {

            m = head->key;

            count = 0;

        printf("%d ", head->id);

        tail->next = head->next;

        free(head);

        }

        head = tail->next;

        }

        printf("%d\n", head->id);

        free(head);

        return 0;

       }

本文地址:http://abssuliao.net/html/86c454695367.html

copyright © 2016 powered by 皮皮网   sitemap