BitMap实现-创新互联
#pragma once
#include
using namespace std;
class BitMap
{
public:
BitMap()
:_size(0)
{}
BitMap(size_t size)
:_size(0)
{
_arrays.resize((size >> 5) + 1);//BitMap的大小
}
bool Set(size_t num)//在对应的index下的(1<
{
size_t index = num >> 5;
size_t n = num % 32;
if (_arrays[index] & (1 << n))
{
return false;
}
else
{
_arrays[index] |= (1 << n);
++_size;
return true;
}
}
bool ReSet(size_t num)//去掉标志位
{
size_t index = num >> 5;
size_t n = num % 32;
if (_arrays[index] & (1 << n))
{
_arrays[index] &= (~(1 << n));
--_size;
return true;
}
return false;
}
bool Test(size_t num)
{
size_t index = num >> 5;
size_t n = num % 32;
return _arrays[index] & (1 << n);
}
void Clear()
{
_arrays.assign(_arrays.size(), 0);
}
protected:
vector
size_t _size;
};
void Test1()
{
BitMap bm(65);
bm.Set(1);
bm.Set(4);
bm.Set(33);
cout << "1?" << bm.Test(1) << endl;
cout << "2?" << bm.Test(2) << endl;
cout << "4?" << bm.Test(4) << endl;
cout << "33?" << bm.Test(33) << endl;
bm.ReSet(33);
bm.ReSet(4);
cout << "1?" << bm.Test(1) << endl;
cout << "2?" << bm.Test(2) << endl;
cout << "4?" << bm.Test(4) << endl;
cout << "33?" << bm.Test(33) << endl;
}
另外有需要云服务器可以了解下创新互联scvps.cn,海内外云服务器15元起步,三天无理由+7*72小时售后在线,公司持有idc许可证,提供“云服务器、裸金属服务器、高防服务器、香港服务器、美国服务器、虚拟主机、免备案服务器”等云主机租用服务以及企业上云的综合解决方案,具有“安全稳定、简单易用、服务可用性高、性价比高”等特点与优势,专为企业上云打造定制,能够满足用户丰富、多元化的应用场景需求。
新闻标题:BitMap实现-创新互联
文章URL:http://scfushun.com/article/ioesj.html