【问题标题】:Generate Random Number in 2D Vector C++在二维向量 C++ 中生成随机数
【发布时间】:2019-04-01 11:23:19
【问题描述】:

我在 C++ 中实现了一个简单的二维向量类,它初始化具有给定大小(行数和列数)的二维向量,以及是否随机化该值。我还实现了将矩阵打印到控制台以查看结果的方法。

我已尝试在 Windows (MSYS2) 中使用带有标志“-std=c++17”的 GCC 8.3.0 运行代码。这是代码。

#include <random>
#include <iostream>
#include <vector>


class Vec2D
{
public:
    Vec2D(int numRows, int numCols, bool isRandom)
    {
        this->numRows = numRows;
        this->numCols = numCols;

        for(int i = 0; i < numRows; i++) 
        {
            std::vector<double> colValues;

            for(int j = 0; j < numCols; j++) 
            {
                double r = isRandom == true ? this->getRand() : 0.00;
                colValues.push_back(r);
            }

            this->values.push_back(colValues);
        }
    }

    double getRand()
    {
        std::random_device rd;
        std::mt19937 gen(rd());
        std::uniform_real_distribution<> dis(0,1);

        return dis(gen);
    }

    void printVec2D()
    {
        for(int i = 0; i < this->numRows; i++) 
        {
            for(int j = 0; j < this->numCols; j++)
            {
                std::cout << this->values.at(i).at(j) << "\t";
            }
        std::cout << std::endl;
        }
    }
private:
    int numRows;
    int numCols;

    std::vector< std::vector<double> > values;
};

int main()
{
    Vec2D *v = new Vec2D(3,4,true);

    v->printVec2D();
}

当“isRandom”参数为true 时,我期望的是一个具有随机值的二维向量。相反,我得到了值都相同的向量。 例如。当我在我的电脑上运行代码时,我得到了这个:

0.726249        0.726249        0.726249        0.726249
0.726249        0.726249        0.726249        0.726249
0.726249        0.726249        0.726249        0.726249

我的问题是我的 C++ 代码有什么问题?提前感谢您的回答。

【问题讨论】:

标签: c++ vector random printing floating-point


【解决方案1】:

我认为不应该每次都创建生成器,让这个部分成为成员并且只调用dis

    std::random_device rd; //Will be used to ***obtain a seed for the random number engine***
    std::mt19937 gen(rd());
    std::uniform_real_distribution<> dis(0,1);

第二,确保你打电话

std::srand(std::time(nullptr));

在申请开始时只有一次

【讨论】:

    猜你喜欢
    • 2016-05-16
    • 1970-01-01
    • 2015-04-09
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    相关资源
    最近更新 更多