91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

隨機化數組和約瑟夫環

發布時間:2020-06-27 18:23:25 來源:網絡 閱讀:1152 作者:匯天下豪杰 欄目:編程語言

1、隨機化數組問題

    就是對已有的數組進行亂序排列,使之隨機的,毫無規律;

(1)、代碼實現

#include<stdio.h>
#include<time.h>
#include<stdlib.h>

void showArray(int *a, int count);
void random_1(int *a, int count);
void random_1(int *a, int count){
    int i;
    int tmp;
    int index;

    srand(time(NULL));
    for(i = count; i > 0; i--){
        index = rand()%i;
        tmp = a[index];
        a[index] = a[i-1];
        a[i-1] = tmp;
    }

}
void showArray(int *a, int count){
    int i;

    for(i = 0; i < count; i++){
        printf("%d ", a[i]);
    }
    printf("\n");
}


int main(void){
    int a[] = {4, 6, 8, 2, 0, 7, 1,};
    int count = sizeof(a)/sizeof(int);

    showArray(a, count);
    random_1(a, count);
    showArray(a, count);

    return 0;
}

(2)、結果截圖

隨機化數組和約瑟夫環


2、約瑟夫環問題

    M個元素,第N個元素出圈,從第start開始數即可;

(1)、代碼實現

#include<stdio.h>
#include<malloc.h>

void yusf(char **str, int count, int doom, int start){
    int *person;
    int i;
    int pre = start-2;
    int cur = start-1;
    int alive = count;
    int doomNumber = 0;

    if(start == 1){
        pre = count-1;
    }

    person = (int *)malloc(sizeof(int) * count);
    for(i = 0; i < count; i++){
        person[i] = (i+1)%count;  //循環數組
    }

    for(; alive > 0; cur = person[cur]){
        if(++doomNumber >= doom){
            printf("%s->出圈\n", str[cur]);
            alive--;
            doomNumber = 0;
            person[pre] = person[cur]; //出圈時的pre的保存
        }else{
            pre = cur;
        }
    }
}

int main(void){
    char *str[] = {"李大", "馬二", "張三", "李四", "王五", "劉六", "吊七", "朱八", "楊九"};
    int count = sizeof(str)/sizeof(char *);
    int doom;  //惡運數字
    int start;  //從第幾個人開始

    scanf("%d%d", &doom, &start);
    if(doom > count || doom <= 0 || start > count|| start <= 0){
        return;
    }

    yusf(str, count, doom, start); //count個元素,doom個厄運數字,從第start開始;

    return 0;
}

(2)、結果截圖

隨機化數組和約瑟夫環



向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

甘肃省| 大埔区| 韶关市| 绥阳县| 民县| 阜平县| 弥渡县| 义乌市| 拉孜县| 武宁县| 扎囊县| 木里| 辛集市| 莱芜市| 亚东县| 酒泉市| 新疆| 五常市| 邳州市| 邹城市| 大英县| 大竹县| 漯河市| 象山县| 河曲县| 横山县| 名山县| 绥化市| 乌兰县| 乐昌市| 收藏| 筠连县| 徐州市| 隆昌县| 长治市| 苍溪县| 平安县| 泰兴市| 潜江市| 区。| 阿鲁科尔沁旗|