This commit is contained in:
邹晓航
2015-01-12 12:49:38 +08:00
parent 95988fe5f6
commit 17762ee5ee
2 changed files with 164 additions and 141 deletions

View File

@@ -31,16 +31,7 @@ namespace TinySTL{
size_t count() const;
size_t size() const{ return size_; }
//Returns whether the bit at position pos is set (i.e., whether it is one).
bool test(size_t pos) const{
THROW(pos);
const auto nth = getNth(pos);
const auto mth = getMth(pos);
uint8_t *ptr = start_ + nth;
uint8_t temp = getMask(*ptr, mth);
if (temp)
return true;
return false;
}
bool test(size_t pos) const;
//Returns whether any of the bits is set (i.e., whether at least one bit in the bitset is set to one).
bool any() const;
//Returns whether none of the bits is set (i.e., whether all bits in the bitset have a value of zero).
@@ -48,15 +39,9 @@ namespace TinySTL{
//Returns whether all of the bits in the bitset are set (to one).
bool all() const;
bitmap& set(){
uninitialized_fill_n(start_, sizeOfUINT8_, ~0);
return *this;
}
bitmap& set();
bitmap& set(size_t pos, bool val = true);
bitmap& reset(){
uninitialized_fill_n(start_, sizeOfUINT8_, 0);
return *this;
}
bitmap& reset();
bitmap& reset(size_t pos);
bitmap& flip();
bitmap& flip(size_t pos);
@@ -67,137 +52,19 @@ namespace TinySTL{
template<size_t N>
friend std::ostream& operator <<(std::ostream& os, const bitmap<N>& bm);
private:
size_t roundUp8(size_t bytes){
return ((bytes + EAlign::ALIGN - 1) & ~(EAlign::ALIGN - 1));
}
size_t roundUp8(size_t bytes);
//<2F><>i<EFBFBD>ĵ<EFBFBD>nthΪ<68><CEAA>ΪnewVal
void setNthInInt8(uint8_t& i, size_t nth, bool newVal){//nth<74><68>0<EFBFBD><30>ʼ
uint8_t temp = getMask(i, nth);
if ((bool)temp == newVal){
return;
}else{
if (temp){//nthλΪ1
temp = ~temp;
i = i & temp;
}else{//nthλΪ0
i = i | (1 << nth);
}
}
}
void setNthInInt8(uint8_t& i, size_t nth, bool newVal);
//ȡ<><C8A1>i<EFBFBD>ĵ<EFBFBD>nthλ
uint8_t getMask(uint8_t i, size_t nth)const{ return (i & (1 << nth)); }
//<2F><><EFBFBD><EFBFBD>n<EFBFBD><6E>λ<EFBFBD><CEBB>ת<EFBFBD><D7AA>Ϊ<EFBFBD><CEAA><EFBFBD>ڵڼ<DAB5><DABC><EFBFBD>uint8_t<5F><74>
size_t getNth(size_t n)const{ return (n / 8); }
//<2F><><EFBFBD><EFBFBD>n<EFBFBD><6E>λ<EFBFBD><CEBB>ת<EFBFBD><D7AA>Ϊ<EFBFBD><CEAA><EFBFBD>ڵ<EFBFBD>N<EFBFBD><4E>uint8_t<5F>еĵڼ<C4B5><DABC><EFBFBD>bit<69><74>
size_t getMth(size_t n)const{ return (n % EAlign::ALIGN); }
void allocateAndFillN(size_t n, uint8_t val){
start_ = dataAllocator::allocate(n);
finish_ = uninitialized_fill_n(start_, n, val);
}
void THROW(size_t n)const{
if (!(0 <= n && n < size()))
throw std::out_of_range("Out Of Range");
}
void allocateAndFillN(size_t n, uint8_t val);
void THROW(size_t n)const;
};// end of bitmap
template<size_t N>
bitmap<N>::bitmap() :size_(roundUp8(N)), sizeOfUINT8_(roundUp8(N) / 8){
allocateAndFillN(sizeOfUINT8_, 0);
}
template<size_t N>
bitmap<N>& bitmap<N>::set(size_t pos, bool val){
THROW(pos);
const auto nth = getNth(pos);
const auto mth = getMth(pos);
uint8_t *ptr = start_ + nth;//get the nth uint8_t
setNthInInt8(*ptr, mth, val);
return *this;
}
template<size_t N>
bitmap<N>& bitmap<N>::reset(size_t pos){
set(pos, false);
return *this;
}
template<size_t N>
bitmap<N>& bitmap<N>::flip(){
uint8_t *ptr = start_;
for (; ptr != finish_; ++ptr){
uint8_t n = *ptr;
*ptr = ~n;
}
return *this;
}
template<size_t N>
bitmap<N>& bitmap<N>::flip(size_t pos){
THROW(pos);
const auto nth = getNth(pos);
const auto mth = getMth(pos);
uint8_t *ptr = start_ + nth;
uint8_t temp = getMask(*ptr, mth);
if (temp)
setNthInInt8(*ptr, mth, false);
else
setNthInInt8(*ptr, mth, true);
return *this;
}
template<size_t N>
size_t bitmap<N>::count() const{
uint8_t *ptr = start_;
size_t sum = 0;
for (; ptr != finish_; ++ptr){
for (int i = 0; i != 8; ++i){
uint8_t t = getMask(*ptr, i);
if (t){
++sum;
}
}
}
return sum;
}
template<size_t N>
bool bitmap<N>::any() const{
uint8_t *ptr = start_;
for (; ptr != finish_; ++ptr){
uint8_t n = *ptr;
if (n != 0)
return true;
}
return false;
}
template<size_t N>
bool bitmap<N>::all() const{
uint8_t *ptr = start_;
for (; ptr != finish_; ++ptr){
uint8_t n = *ptr;
if (n != (uint8_t)~0)
return false;
}
return true;
}
template<size_t N>
bool bitmap<N>::none() const{
return !any();
}
template<size_t N>
string bitmap<N>::to_string() const{
string str;
uint8_t *ptr = start_;
for (; ptr != finish_; ++ptr){
uint8_t n = *ptr;
for (int i = 0; i != 8; ++i){
uint8_t t = getMask(n, i);
if (t) str += "1";
else str += "0";
}
}
return str;
}
template<size_t N>
std::ostream& operator <<(std::ostream& os, const bitmap<N>& bm){
os << bm.to_string();
return os;
}
}
#include "Detail\Bitmap.impl.h"
#endif

View File

@@ -0,0 +1,156 @@
#ifndef _BITMAP_IMPL_H_
#define _BITMAP_IMPL_H_
namespace TinySTL{
template<size_t N>
void bitmap<N>::allocateAndFillN(size_t n, uint8_t val){
start_ = dataAllocator::allocate(n);
finish_ = uninitialized_fill_n(start_, n, val);
}
template<size_t N>
void bitmap<N>::THROW(size_t n)const{
if (!(0 <= n && n < size()))
throw std::out_of_range("Out Of Range");
}
template<size_t N>
void bitmap<N>::setNthInInt8(uint8_t& i, size_t nth, bool newVal){//nth<74><68>0<EFBFBD><30>ʼ
uint8_t temp = getMask(i, nth);
if ((bool)temp == newVal){
return;
}
else{
if (temp){//nthλΪ1
temp = ~temp;
i = i & temp;
}
else{//nthλΪ0
i = i | (1 << nth);
}
}
}
template<size_t N>
size_t bitmap<N>::roundUp8(size_t bytes){
return ((bytes + EAlign::ALIGN - 1) & ~(EAlign::ALIGN - 1));
}
template<size_t N>
bitmap<N>& bitmap<N>::set(){
uninitialized_fill_n(start_, sizeOfUINT8_, ~0);
return *this;
}
template<size_t N>
bitmap<N>& bitmap<N>::reset(){
uninitialized_fill_n(start_, sizeOfUINT8_, 0);
return *this;
}
template<size_t N>
bool bitmap<N>::test(size_t pos) const{
THROW(pos);
const auto nth = getNth(pos);
const auto mth = getMth(pos);
uint8_t *ptr = start_ + nth;
uint8_t temp = getMask(*ptr, mth);
if (temp)
return true;
return false;
}
template<size_t N>
bitmap<N>::bitmap() :size_(roundUp8(N)), sizeOfUINT8_(roundUp8(N) / 8){
allocateAndFillN(sizeOfUINT8_, 0);
}
template<size_t N>
bitmap<N>& bitmap<N>::set(size_t pos, bool val){
THROW(pos);
const auto nth = getNth(pos);
const auto mth = getMth(pos);
uint8_t *ptr = start_ + nth;//get the nth uint8_t
setNthInInt8(*ptr, mth, val);
return *this;
}
template<size_t N>
bitmap<N>& bitmap<N>::reset(size_t pos){
set(pos, false);
return *this;
}
template<size_t N>
bitmap<N>& bitmap<N>::flip(){
uint8_t *ptr = start_;
for (; ptr != finish_; ++ptr){
uint8_t n = *ptr;
*ptr = ~n;
}
return *this;
}
template<size_t N>
bitmap<N>& bitmap<N>::flip(size_t pos){
THROW(pos);
const auto nth = getNth(pos);
const auto mth = getMth(pos);
uint8_t *ptr = start_ + nth;
uint8_t temp = getMask(*ptr, mth);
if (temp)
setNthInInt8(*ptr, mth, false);
else
setNthInInt8(*ptr, mth, true);
return *this;
}
template<size_t N>
size_t bitmap<N>::count() const{
uint8_t *ptr = start_;
size_t sum = 0;
for (; ptr != finish_; ++ptr){
for (int i = 0; i != 8; ++i){
uint8_t t = getMask(*ptr, i);
if (t){
++sum;
}
}
}
return sum;
}
template<size_t N>
bool bitmap<N>::any() const{
uint8_t *ptr = start_;
for (; ptr != finish_; ++ptr){
uint8_t n = *ptr;
if (n != 0)
return true;
}
return false;
}
template<size_t N>
bool bitmap<N>::all() const{
uint8_t *ptr = start_;
for (; ptr != finish_; ++ptr){
uint8_t n = *ptr;
if (n != (uint8_t)~0)
return false;
}
return true;
}
template<size_t N>
bool bitmap<N>::none() const{
return !any();
}
template<size_t N>
string bitmap<N>::to_string() const{
string str;
uint8_t *ptr = start_;
for (; ptr != finish_; ++ptr){
uint8_t n = *ptr;
for (int i = 0; i != 8; ++i){
uint8_t t = getMask(n, i);
if (t) str += "1";
else str += "0";
}
}
return str;
}
template<size_t N>
std::ostream& operator <<(std::ostream& os, const bitmap<N>& bm){
os << bm.to_string();
return os;
}
}
#endif