Guest User

Untitled

a guest
Feb 23rd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. void update(int index,int value)
  2. {
  3. while(index <= n) // n is the size of A
  4. {
  5. BIT[index] += value;
  6. index += index & (-index);
  7. }
  8. }
Add Comment
Please, Sign In to add comment