Problem Description
A Bitset is a data structure that compactly stores bits. The task is to implement a Bitset class with various operations to manipulate the bits.
Key Insights
- A Bitset consists of bits that can be either 0 or 1.
- Operations include setting a bit to 1, resetting a bit to 0, flipping all bits, and checking the status of the bits.
- Efficient implementation is necessary to handle up to 100,000 operations.
Space and Time Complexity
Time Complexity:
- O(1) for
fix
,unfix
, andcount
. - O(n) for
flip
andtoString
. - O(1) for
one
andall
.
Space Complexity: O(n) for storing the bits.
Solution
To solve the problem, we will use an array to represent the bits of the Bitset. Each index of the array corresponds to a bit, where 0 represents 'off' and 1 represents 'on'. We will also maintain a counter to quickly track the number of bits that are set to 1. The flip
operation will toggle the bits, and we will use a boolean flag to keep track of whether the bits are currently in their original or flipped state.