码迷,mamicode.com
首页 > 编程语言 > 详细

树状数组

时间:2021-04-05 12:05:49      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:sum   ems   ++   get   ret   while   memset   amp   int   

class Sarr
{
public:
	Sarr()
	{
		memset(Bit, 0, sizeof(Bit));
	}
	int lowbit(int pos)
	{
		return pos & (-pos);
	}
	void update(int pos, int len)
	{
		while (pos <= len)
		{
			Bit[pos] += 1;
			pos += lowbit(pos);
		}
	}
	int getSum(int pos)
	{
		int sum = 0;
		while (pos)
		{
			sum += Bit[pos];
			pos -= lowbit(pos);
		}
		return sum;
	}
private:
	int Bit[100010];
}sarr;

树状数组

标签:sum   ems   ++   get   ret   while   memset   amp   int   

原文地址:https://www.cnblogs.com/youseecode/p/14612346.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!