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

后端 未结 7 952
有刺的猬
有刺的猬 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:58

    I would suggest using the BITSCAN library, as an alternative to Boost:dynamic_bitset. A comparative survey can be found here.

    0 讨论(0)
提交回复
热议问题