Bitsets are Awesome
How Bitsets can Speed Up the Time of our Solutions.
By Thiago Felipe Bastos da Silva
Today I’ll talk about a standard C++ data structure that is amazing: the bitsets. They can handle binary operations such as left shift («), right shift (»), and (&), or (|), and xor (^), and they can have a fixed number of bits. Now you may ask me which types...
[Read More]