0

vector<vector<bool>>用 0 和 1随机化 a 的最简单方法是什么?我无法在网上找到答案,因此如果适用,请提供参考。

谢谢你。

4

2 回答 2

2

现场演示

#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;
    }
}
于 2013-04-12T01:08:37.597 回答
1

现场演示

我稍微偏爱可重用函数来生成单独的“行”,然后根据需要创建完整的“矩阵”。运行时间几乎与其他答案相同(由“实时工作区”确定(运行时间约 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;
}
于 2013-04-12T01:38:49.473 回答