如何在 C++ 中执行布尔运算

How to perform boolean operations in c++

我想添加两个布尔向量

vector<bool> v1= {0,0,1}
vector<bool> v2= {1,0,1}
vector<bool> resultedVector = v1+v2 

答案应该是:

resultedVector = {1,1,0};

有谁知道,在c++/c++11中怎么办? 我想每次给定的布尔向量加 1。只想使用二元运算。或者可以创建给定数量的变量的布尔真值 table。

要在 C++ 中执行二进制加法,您可以使用此处描述的函数: Adding binary numbers in C++

我实现了那个 link 的功能以符合您的规格,如下所示:

std::vector<bool> add(const std::vector<bool>& a, const std::vector<bool>& b)
{
        bool c;
        std::vector<bool> result;
        for(int i = 0; i < a.size() ; i++){
                result.push_back(false);
                result[i] = ((a[i] ^ b[i]) ^ c); // c is carry
                c = ((a[i] & b[i]) | (a[i] & c)) | (b[i] & c);
        }
        return result;
}

此函数采用两个布尔向量(并假设它们大小相同)和 returns 它们的结果向量。显然这个函数不处理溢出或不同大小的数字。如果您需要这些功能,您可以自己修改它。此外,您似乎在谈论 bool 向量的重载运算符,您可以通过检查运算符重载来做到这一点,但这种逻辑将允许您添加存储在向量中的两个布尔值。

以下是使用有状态仿函数的方法:

struct BitAdder {
    bool carry_ = 0x0;  // Range is [0, 1].

    // Only accepts single bit values for a and b.
    bool operator()(bool a, bool b) {
        assert(a == (a & 0x1) && b == (b & 0x1));
        char sum = a + b + carry_;
        carry_ = (sum & 0x2) >> 1;  // Keep in range.
        return sum & 0x1;
    }
};

// Code is more straightforward when bits are stored in reverse.
std::vector<bool> v = {0, 1, 1, 1, 0};  // To be interpreted as:  1110 (14).
std::vector<bool> w = {1, 0, 1, 1, 0};  // To be interpreted as:  1101 (13).
std::vector<bool> result = {0, 0, 0, 0, 0};  //     Will become: 11011 (27).

assert(v.size() <= w.size());  // v and w can be iterated over together.
assert(v.size() <= result.size());  // There is enough space to store the bits.
assert(v[v.size() - 1] + w[v.size() - 1] < 2);  // No overflow can happen.
std::transform(v.cbegin(), v.cend(), w.cbegin(), result.begin(), BitAdder());

std::cout << "want: 11011, got: ";
std::copy(result.crbegin(), result.crend(), std::ostream_iterator<bool>(std::cout));
std::cout << '\n';

Live Demo

我不确定我是否理解你的问题。由于这看起来像是家庭作业,而且问题的重点似乎是运算符超载,这里是一个想法,而不是完整的答案:

#include <vector>

std::vector< bool > operator+( const std::vector<bool>& a, const std::vector<bool>& b )
{
  std::vector< bool > r;
  // your code goes here
  return r;
}

int main()
{
  std::vector< bool > a, b, c;
  c = a + b;
  return 0;
}

编辑 - 一天后

这是您的增量问题 (demo) 的解决方案:

#include <iostream>
#include <vector>

// preinc - no grow on overflow
std::vector< bool >& operator++( std::vector<bool>& v )
{
  for ( auto e : v )
    if ( e = !e )
      break;
  return v;
}

// postinc - no grow on overflow
std::vector< bool > operator++( std::vector<bool>& v, int )
{
  auto t { v };
  operator++( v );
  return t;
}

// insert
std::ostream& operator<<( std::ostream& os, const std::vector< bool > v )
{
  for ( std::vector< bool >::const_reverse_iterator ci = v.rbegin(); ci != v.rend(); ++ci )
    os << *ci ? '1' : '0';
  return os;
}

int main()
{
  std::vector< bool > b {0,0,0,0};
  for ( int i = 0; i < 16; ++i )
  {
    std::cout << b << std::endl;
    ++b;
  }

  return 0;
}