91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

BitMap實現

發布時間:2020-07-16 02:21:15 來源:網絡 閱讀:315 作者:zheng_feng 欄目:編程語言

#pragma once


#include<vector>

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<<n)位設置為一

{

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> _arrays;

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;

}


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

安平县| 崇仁县| 莲花县| 鲁甸县| 合作市| 姚安县| 自贡市| 德州市| 宝清县| 雷波县| 九台市| 武隆县| 正蓝旗| 咸丰县| 皋兰县| 沾化县| 玉溪市| 漳平市| 桃源县| 八宿县| 霍州市| 闵行区| 清远市| 贵德县| 庆阳市| 刚察县| 双柏县| 华蓥市| 沐川县| 周口市| 海城市| 石家庄市| 渝北区| 靖远县| 纳雍县| 措勤县| 冷水江市| 高唐县| 宜阳县| 景泰县| 高安市|