C生成随机数而不重复

时间:2014-04-19 22:50:14

标签: c

我想生成1到13之间的随机数而不重复 我使用了这种方法,但它并不能确保没有声誉。

for ( i = 0; i < 13; i++)
{
      array[i] = 1 + (rand() % 13);
}

请帮帮我。 C语言

1 个答案:

答案 0 :(得分:11)

正如评论所说,Fill an array with numbers 1 through 13 then shuffle the array.

int array[13];

for (int i = 0; i < 13; i++) {     // fill array
    array[i] = i;
    printf("%d,", array[i]);
}
printf("\n done with population \n");
printf("here is the final array\n");

for (int i = 0; i < 13; i++) {    // shuffle array
    int temp = array[i];
    int randomIndex = rand() % 13;

    array[i]           = array[randomIndex];
    array[randomIndex] = temp;
}


for (int i = 0; i < 13; i++) {    // print array
    printf("%d,",array[i]);
}

以下是示例输出。

0,1,2,3,4,5,6,7,8,9,10,11,12,
 done with population 
here is the final array
11,4,5,6,10,8,7,1,0,9,2,12,3,

注意:我使用了最基本的排序。如果你愿意,可以使用更好的。

相关问题