树状数组

2021-06-06 15:02

阅读:323

标签: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 

树状数组

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

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


评论


亲,登录后才可以留言!