C++ 实现位图

Posted Wecccccccc

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C++ 实现位图相关的知识,希望对你有一定的参考价值。

代码如下:

#include <iostream>
#include <vector>
using namespace std;

class BitMap
{
public:

	BitMap(size_t range):_bit(range/32+1){}

	void set(const size_t num)
	{
		int idx = num / 32;//idx 数组下标

		int bitIdx = num % 32;

		_bit[idx] |= 1 << bitIdx;
	}

	bool find(const size_t num)
	{
		int idx = num / 32;
		int bitIdx = num % 32;
		return (_bit[idx] >> bitIdx) & 1;
	}

	void reset(const size_t num)
	{
		int idx = num / 32;
		int bitIdx = num % 32;
		_bit[idx] &= ~(1 << bitIdx);
	}


private:
	vector<int>_bit;
};

int main()
{
	BitMap m(1000);
	m.set(233);
	if (m.find(233)) cout << "yes" << endl;
	else cout << "no" << endl;

	m.reset(233);
	if (m.find(233))cout << "yes" << endl;
	else cout << "no" << endl;

	if (m.find(2))cout << "yes" << endl;
	else cout << "no" << endl;

	return 0;
}

测试结果:
在这里插入图片描述

以上是关于C++ 实现位图的主要内容,如果未能解决你的问题,请参考以下文章

C++进阶第二十三篇——位图(概念+实现)

C++ 位图及位图的实现

C++ 位图及位图的实现

C++实现位图

c++——海量数据处理各种面试题(位图的实现和应用,布隆过滤器的应用,哈希切分)

我的Android进阶之旅NDK开发之在C++代码中使用Android Log打印日志,打印出C++的函数耗时以及代码片段耗时详情