码迷,mamicode.com
首页 > 编程语言 > 详细

C++中生成[0, N-1]随机序列

时间:2020-06-26 10:30:24      阅读:91      评论:0      收藏:0      [点我收藏+]

标签:malloc   输入   生成   and   bsp   ems   while   ++   col   

输入 随机序列长度,返回 随机序列

int * randpermC(int N)
{
    int *arr = (int*)malloc(N * sizeof(int));
    int *arr2 = (int*)malloc(N * sizeof(int));
    int count = 0;
    memset(arr, 0, N * sizeof(int));
    srand(time(NULL));
    while (count<N)
    {
        int val = rand() % N;
        if (!arr[val])
        {
            arr[val] = 1;
            arr2[count] = val;
            ++count;
        }
    }
    return arr2;
}

arr用于标记是否使用,arr2用于记录返回的随机序列

 

C++中生成[0, N-1]随机序列

标签:malloc   输入   生成   and   bsp   ems   while   ++   col   

原文地址:https://www.cnblogs.com/sbj123456789/p/13193710.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!