search

Home  >  Q&A  >  body text

c++ - 如何将linux中的rand_r()在windows下实现?

有一段代码:

void GenerateData(int nPoints, int nDims, std::vector<float> & data)
{
    unsigned int seed = 111;
    data.resize(nPoints*nDims);
    for (int i = 0; i < nPoints; i++)
        
        for (int j = 0; j < nDims; j++)
        
            data[i*nDims + j] = ((float)rand_r(&seed)) / RAND_MAX;
        
}

现在想在windows的vs2013中使用,我考虑使用srand()+rand(),
请问srand()的位置应该在哪里?

巴扎黑巴扎黑2803 days ago1332

reply all(2)I'll reply

  • 阿神

    阿神2017-04-17 13:43:18

    First of all, rand is a stateful sequence, which can be understood as a sequence.
    And srand is a function that changes the starting state of this sequence.
    srand only needs to be set once, after the program starts.

    reply
    0
  • 伊谢尔伦

    伊谢尔伦2017-04-17 13:43:18

    rand(), srand() and RAND_MAX are all random number library functions in C. If using C++11 and above, the subject may consider using std::uniform_int_distribution or std::uniform_real_distribution in STL to implement random uniform distribution. If you need other distributions, you can also refer to Pseudo-random number generation. This should make the implementation platform independent.

    reply
    0
  • Cancelreply