每次随机数的数组都是相同的

时间:2014-09-26 15:59:50

标签: c++ xcode6

我制作的矢量程序应该每次产生3个不同的矢量。

这是我到目前为止的代码:

GenerateVector.h文件:

#ifndef Vector_GenerateVector_h
#define Vector_GenerateVector_h
#endif

#include <string>
#include <sstream>
#include <vector>
using namespace std;

class FourVector
{
    int x, y, z, t;
public:
    FourVector (int a, int b, int c, int d);
    int getX() {return x;}
    int getY() {return y;}
    int getZ() {return z;}
    int getT() {return t;}
};

FourVector::FourVector (int a, int b, int c, int d) {
    x = a;
    y = b;
    z = c;
    t = d;
}

string toString(FourVector vec) //get vector function
{
    ostringstream s; //making a new string stream
    s << "("<< vec.getX() << ", " << vec.getY() << ", " << vec.getZ() << ", " << vec.getT() << ")"; // append to string stream
    string combinedString = s.str(); //cast string stream to a string
    return combinedString; //return string.
}

FourVector genVector()
{
    int x = rand() % 10;
    int y = rand() % 10;
    int z = rand() % 10;
    int t = rand() % 10;

    FourVector  v (x, y, z, t);

    return v;
}

vector<FourVector> createArrayFourVectors()
{
    vector<FourVector> vecs; //create array of threevectors.

    for (int i = 0; i < 3; i++) {
        FourVector v = genVector();
        vecs.assign(i, v); // assign threevectors to the array to fill it up.
    }
    return vecs;
}

main.cpp文件:

#include <iostream>
#include "GenerateVector.h"
using namespace std;

int main(int argc, const char * argv[])
{

    int seed = static_cast<int>(time(nullptr));
    srand(seed);

    vector<FourVector> v = createArrayFourVectors();

    for (int i = 0; i < 3; i++) {
        FourVector tv = v[i];
        cout << toString(tv) << endl;
    }
}

(5,1,4,8)

(5,1,4,8)

(0,0,0,0)

程序以退出代码结束:0

第一个问题是:我不明白为什么只有2个矢量而不是3个。

第二个问题是:为什么矢量编号1和矢量编号2总是相同?我在主函数的开头只使用了srand()一次,但仍然有这个问题。我认为我的计算机速度太快,无法显着改变产生另一组随机数,但试图插入usleep(1000000)没有任何区别。

任何帮助将不胜感激!

2 个答案:

答案 0 :(得分:4)

问题出在vecs.assign(i, v);。这种形式的assign采用整数和对象,并将向量设置为等于对象的副本数。您有一个超过i的循环,取值为0,1和2,因此在循环的最后一次迭代中,您将设置FourVector对象的两个副本。这意味着vec的前两个元素将是相同的副本,向量的长度将为2,任何超出该值的访问尝试都将是未定义的行为。

答案 1 :(得分:3)

因为undefined behaviorstd::vector::assign函数替换向量中的现有条目,但向量为空,因此您将写入向量中的不存在条目。

简单的解决方案?请改用push_back