Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7762105
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T14:18:31+00:00 2026-06-01T14:18:31+00:00

I was wondering if a Fenwick Tree (or Binary Indexed Tree) can be modified

  • 0

I was wondering if a Fenwick Tree (or Binary Indexed Tree) can be modified to:

1) Increment the frequency all elements in a range by a certain amount

2) Query the frequency of a single element.

This is as opposed to the traditional Fenwick Tree where updates are done on a single element and queries are done over a range (kind of like an inverse Fenwick Tree).

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-01T14:18:32+00:00Added an answer on June 1, 2026 at 2:18 pm

    Sure!

    Fenwick tree allows you to do these operations in O(log n):

    update(x, delta)   => increases value at index x by delta
    query(x)           => returns sum of values at indices 0,1,2,...,x
    

    Here’s a simple implementation of a Fenwick tree in C++:

    int F[MAX];
    
    void update( int x, int delta ) {
      for( ++x; x < MAX; x += x&-x ) F[x] += delta;
    }
    
    int query( int x ) {
      int sum = 0;
      for( ++x; x > 0; x -= x&-x ) sum += F[x];
      return sum;
    }
    

    Now forget about the internals of the Fenwick tree and focus on the problem. When using Fenwick tree, just imagine it literally stores an array of frequencies and somehow magically does both operations in O(log n). Function update modifies the frequency of a single element and query returns sum of frequencies of first x elements.

    So in the ‘traditional’ problem you had these operations:

    void incFreqAt( int index ) {
      update( index, 1 );
    }
    
    int getFreqAt( int index ) {
      return query( index ) - query( index-1 );
    }
    

    Now, instead of storing frequency of each single element, let’s store differences between frequencies of adjacent elements.

    These are the new operations:

    void incFreqFromTo( int a, int b, int delta ) {
      update( a, delta );
      update( b+1, -delta );
    }
    
    int getFreqAt( int index ) {
      return query( index );
    }
    

    When incrementing frequencies in range [a..b], just increment difference at index a and decrement difference at index b+1. This is also like saying: increment all frequencies in range [a..infinity] and decrement all frequencies in range [b+1..infinity].

    To get the frequency of the element at index x, just sum all differences of frequencies in range [0..x].

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

wondering how I can replace all special chars on my string like: hello this
Wondering if anyone can help me with this annoying but trivial (in terms of
Wondering why a particular binary write operation in VB is so slow. The function
Wondering if someone can tell me why this regular expression doesn't work. Expression ->
Wondering if anyone can help me. I'm trying to put together a weekly photo
Wondering how I can change the php session id from PHPSESSID to something else
wondering if anyone can help. This works, but I was wondering how it would
Wondering if it is ok to have a form inside an HTML email. All
Wondering if anybody knows where I can find any high resolution pictures for iPhone,
Wondering if you could help me with a simple SQL query. I have included

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.