Fenwick树中的分段错误(二进制索引树)

时间:2013-12-09 20:44:03

标签: c++ tree fenwick-tree

我已经意识到Fenwick Tree,但是当我尝试在段上找到总和时,会出现Segmentation Fault 11。

#include <vector>
#include <iostream>
using namespace std;


class Fenwick{
public:
    Fenwick();
    int sum(int l, int r);
    void update(int pos, int value);
    void print(int i);
private:
    vector<int> fentr;
    int sum(int i);
};
Fenwick::Fenwick(){
}

void Fenwick::print(int i){
    cout<<fentr[i];
}
int Fenwick::sum(int l, int r){
    return sum(r)-sum(l-1);
}
int Fenwick::sum(int i){
    int result=0;
    // while(i>=0){
    //  result+=fentr[i];
    //  i=(i&(i+1))-1;
    // }
    for(int j=i; j>=0; j=(i&(i+1))-1){
        result+=fentr[j];
    }
    return result;
}

void Fenwick::update(int pos, int value){
    while (pos<fentr.size()){
        fentr[pos]+=value;
        pos=pos | (pos+1);
    }
}


int main(){
    Fenwick a;
    a.update(0, 1);
    a.update(1, 2);
    a.update(2, 3);
    a.update(3, 4);
    a.update(4, 5);
    int j = a.sum(0,2);
    cout<<j;


}

另外,我做得对吗?我的意思是,我完全理解Fenwick树的想法,我只是无法找出我们必须用初始数组做什么?也许我需要通过Fenwik课程作为参数,然后与他合作?或者只是很多更新?提前谢谢。

1 个答案:

答案 0 :(得分:0)

据我所知,您尚未初始化fentr向量。这不会在更新时失败,因为您正在循环到fentr.size(),但它会在调用sum时出现段错误。