Is the use of std::vector objects in C++ acceptable, or should I use an alternative?

后端 未结 7 995
有刺的猬
有刺的猬 2020-11-29 09:29

I\'m working with a user-defined quantity of bits (I\'m holding a three-dimensional array of bits, so the size increases cubically - assume no less then 512 bits), and need

7条回答
  •  既然无缘
    2020-11-29 09:55

    An alternative could be BitMagic although I'm not sure it works on any other architecture than x86(it's heavily optimized using SIMD).

提交回复
热议问题