真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網站制作重慶分公司

樹形數(shù)組 學習之外總能發(fā)現(xiàn)別人更好的

 

 

 /*****************
http://www.anycodes.cn/zh/

 [[樹狀數(shù)組]線段數(shù)]
 高效:log(n)
 操作:位操作
 思想:二分法
 百度百科之外還有以下博客
http://dongxicheng.org/structure/binary_indexed_tree/
http://blog.csdn.net/int64ago/article/details/7429868#

t3
 ******************/
 
#include 
using namespace std;
int in[]={1,2,3,4,5,6,7,8,9};int n=9;
int lowbit0(int t)
{
  return t & ( t ^ ( t - 1 ) );
}
int lowbit(int x)
{
return x&-x;
}
 /**************
http://jinzhi.supfree.net/
再度復習內存與位操作
如 存3  為0000 0011
-3       1111 1101
按位與     0000 0001 
  **************/
//求前n項和
int sum(int end)
{  int sum = 0;
   while(end > 0)
   {
     sum += in[end];
     end -= lowbit(end);
   }
  return sum;
 }
 
//增加某個元素的大小
 void addx(int pos, int num)
 {
    while(pos <= n)
    {  
         in[pos] += num;
       pos += lowbit(pos);
     }
 }
 void show()
 {
     for(int i=0;i<9;i++)
     cout<
  


網站標題:樹形數(shù)組 學習之外總能發(fā)現(xiàn)別人更好的
網站鏈接:http://weahome.cn/article/jpdigc.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部