树状数组
2021-06-06 15:02
阅读:323
标签:sum ems ++ get ret while memset amp int 树状数组 标签:sum ems ++ get ret while memset amp int 原文地址:https://www.cnblogs.com/youseecode/p/14612346.htmlclass Sarr
{
public:
Sarr()
{
memset(Bit, 0, sizeof(Bit));
}
int lowbit(int pos)
{
return pos & (-pos);
}
void update(int pos, int len)
{
while (pos
上一篇:mvn打包jar包到本地仓库
下一篇:Java:多维数组
评论
亲,登录后才可以留言!