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

树状数组

时间:2016-05-28 15:42:38      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

 1 int lowbit(int x)
 2 {
 3     return x & (-x);
 4 }
 5 
 6 int sum(int x)
 7 {
 8     int ret = 0;
 9     while(x > 0)
10     {
11         ret += tmp[x]; x -= lowbit(x);
12     }
13     return ret; 
14 } 
15 
16 void add(int x, int d)
17 {
18      while(x <= n)
19     {
20          tmp[x] += d; x += lowbit(x);
21     }
22 }
23 void init()
24 {
25    for(int i = 1; i <= n; ++i)
26       add(i,a[i]);
27 }

 

树状数组

标签:

原文地址:http://www.cnblogs.com/Pos-Proteus/p/5537366.html

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