#pragma once
善左ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場景,ssl證書未來市場廣闊!成為創(chuàng)新互聯(lián)建站的ssl證書銷售渠道,可以享受市場價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:028-86922220(備注:SSL證書合作)期待與您的合作!
#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)//在對應(yīng)的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)//去掉標(biāo)志位 { 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; }
本文名稱:BitMap實(shí)現(xiàn)
轉(zhuǎn)載注明:http://weahome.cn/article/jehooj.html