如何随机填充vector <vector <bool>&gt; 0s和1s </vector <bool>

时间:2013-04-12 00:54:37

标签: c++

使用0和1随机化vector<vector<bool>>的最简单方法是什么?我无法在网上找到答案,因此非常感谢您提供的参考资料。

谢谢。

2 个答案:

答案 0 :(得分:2)

LIVE DEMO

#include <algorithm>
#include <iterator>
#include <iostream>
#include <ostream>
#include <cstdlib>
#include <vector>
using namespace std;

#define let const auto&

int main()
{
    let size = 128;
    let inner_size_max = 16;
    vector<vector<bool>> vs(size);

    for(auto &v : vs)
        generate_n(back_inserter(v),rand()%inner_size_max,[]
        {
            return rand()%2==0;
        });

    for(let v : vs)
    {
        for(let b : v)
            cout << b;
        cout << endl;
    }
}

答案 1 :(得分:1)

Live Demo

我略微偏爱可重用函数来生成单独的“行”,然后根据需要创建完整的“矩阵”。运行时与其他答案几乎完全相同(由“实时工作空间”确定(运行时间约为0.1秒)

#include<iostream>
#include<vector>
#include<cstdlib>
#include<algorithm>

// this is a transparent, reusable function
template<size_t N>
std::vector<bool> generate_bits() {
  std::vector<bool> bits;
  bits.reserve(N);
  for(size_t k=0; k<N; k++) {
    bits.push_back(rand() % 2 == 0);
  }
  return stdbits; // rvo, or use std::move
}

int main() {
  std::vector<std::vector<bool>> bits;  
  bits.resize(128);  
  std::generate(bits.begin(), bits.end(), generate_bits<16>);

  // stole the cool printing statement
  for(auto&& v : bits) {
    for(auto&& b : v) {
      std::cout<<b;
    }
    std::cout<<std::endl;
  }  
  return 0;
}