This repository has been archived by the owner on Nov 21, 2020. It is now read-only.
forked from jainaman224/Algo_Ds_Notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fenwick_Tree.java
122 lines (97 loc) · 3.28 KB
/
Fenwick_Tree.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
/*Fenwick Tree is used when there is a problem of range sum query with update
i.e. RMQ. Suppose you have an array and you have been asked to find sum in
range. It can be done in linear time with static array method. If will be
difficult for one to do it in linear time when you have point updates. In this
update operation is incrementing an index by some value. Brute force approach
will take O(n^2) time but Fenwick Tree will take O(nlogn) time
*/
class FenwickTree {
// Fenwick Tree array
static int ft[] = new int[10000];
// Sum operation
static int sum(int index) {
/*
Argument
index : Index upto which you want to find prefix sum
Initialize the result "s" then increment the value of
index "index".
Returns : sum of given arr[0..index]. This function assumes
that the array is preprocessed and partial sums of
array elements are stored in ft[].
*/
// Initialize sum variable to zero
int s = 0;
index = index + 1;
while(index > 0) {
// Adding tree node to sum
s += ft[index];
index -= index & (-index);
}
// Return total sum
return s;
}
// Update operation
static void update(int size, int index, int val) {
/*
Arguments
index : Index of ft to be updated
size : Length of the original array
val : Add val to the index "index"
Traverse all ancestors and add 'val'.
Add 'val' to current node of Fenwick Tree.
Update index to that of parent in update.
*/
index += 1;
while(index <= size) {
// Update Fenwick Tree by incrementing index by val
ft[index] += val;
// Update parent index
index += index & (-index);
}
}
// Build Fenwick Tree
static void build(int arr[], int size) {
/*
Argument
arr : The original array
size : The length of the given array
This function will construct the Fenwick Tree
from the given array of length "size"
*/
for(int i=0; i<size; i++) {
// Constructing Fenwick Tree by update operation
update(size, i, arr[i]);
}
}
public static void main(String args[]) {
/*
INPUT
-------
arr : [2, 1, 1, 3, 2, 3, 4, 5, 6, 7, 8, 9]
Print sum of freq[0...5]
Update position 4 by adding 16
Print sum of freq[2....7] after update
Update position 5 by adding 10
Print sum of freq[2....7] after update
OUTPUT
------
12
33
43
*/
// arr is given array
int arr[] ={2, 1, 1, 3, 2, 3, 4, 5, 6, 7, 8, 9};
// Building Fenwick Tree
build(arr, 12);
// Print sum from index = 0 to index = 5
System.out.println(sum(5));
// Increment arr[4] by 16
update(12, 4, 16);
// Print sum fron index = 2 to index = 7
System.out.println(sum(7) - sum(2));
// Increment arr[5] by 10
update(12, 5, 10);
// Print sum from index = 2 to index = 7
System.out.println(sum(7) - sum(2));
}
}