1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #ifndef BITARRAY_H
- #define BITARRAY_H
- #include "utils/StringBuffer.h"
- class BitArray final {
- int length;
- int bits;
- int* data;
- public:
- BitArray(int length, int bits, int value = 0);
- ~BitArray();
- BitArray(const BitArray& other);
- BitArray(BitArray&& other);
- BitArray& operator=(const BitArray& other);
- BitArray& operator=(BitArray&& other);
- BitArray& set(int index, int value);
- int get(int index) const;
- int getLength() const;
- int getBits() const;
- void resize(int newBits);
- void fill(int value);
- template<int L>
- void toString(StringBuffer<L>& s) const {
- s.append("[");
- for(int i = 0; i < length - 1; i++) {
- s.append(get(i));
- s.append(", ");
- }
- if(length > 0) {
- s.append(get(length - 1));
- }
- s.append("]");
- }
- private:
- void copyData(const BitArray& other);
- void reset();
- };
- #endif
|