Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
TheAlgorithmPython/data_structures/binary_tree/wavelet_tree.py at master · silam/TheAlgorithmPython · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
silam
/
TheAlgorithmPython
Public
forked from
TheAlgorithms/Python
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Files
Expand file tree
master
Breadcrumbs
TheAlgorithmPython
/
data_structures
/
binary_tree
/
wavelet_tree.py
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
209 lines (185 loc) · 5.91 KB
master
Breadcrumbs
TheAlgorithmPython
/
data_structures
/
binary_tree
/
wavelet_tree.py
Copy path
Top
File metadata and controls
Code
Blame
209 lines (185 loc) · 5.91 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
"""
Wavelet tree is a data-structure designed to efficiently answer various range queries
for arrays. Wavelets trees are different from other binary trees in the sense that
the nodes are split based on the actual values of the elements and not on indices,
such as the with segment trees or fenwick trees. You can read more about them here:
1. https://users.dcc.uchile.cl/~jperez/papers/ioiconf16.pdf
2. https://www.youtube.com/watch?v=4aSv9PcecDw&t=811s
3. https://www.youtube.com/watch?v=CybAgVF-MMc&t=1178s
"""
from
__future__
import
annotations
test_array
=
[
2
,
1
,
4
,
5
,
6
,
0
,
8
,
9
,
1
,
2
,
0
,
6
,
4
,
2
,
0
,
6
,
5
,
3
,
2
,
7
]
class
Node
:
def
__init__
(
self
,
length
:
int
)
->
None
:
self
.
minn
:
int
=
-
1
self
.
maxx
:
int
=
-
1
self
.
map_left
:
list
[
int
]
=
[
-
1
]
*
length
self
.
left
:
Node
|
None
=
None
self
.
right
:
Node
|
None
=
None
def
__repr__
(
self
)
->
str
:
"""
>>> node = Node(length=27)
>>> repr(node)
'min_value: -1, max_value: -1'
>>> repr(node) == str(node)
True
"""
return
f"min_value:
{
self
.
minn
}
, max_value:
{
self
.
maxx
}
"
def
build_tree
(
arr
:
list
[
int
])
->
Node
|
None
:
"""
Builds the tree for arr and returns the root
of the constructed tree
>>> build_tree(test_array)
min_value: 0, max_value: 9
"""
root
=
Node
(
len
(
arr
))
root
.
minn
,
root
.
maxx
=
min
(
arr
),
max
(
arr
)
# Leaf node case where the node contains only one unique value
if
root
.
minn
==
root
.
maxx
:
return
root
"""
Take the mean of min and max element of arr as the pivot and
partition arr into left_arr and right_arr with all elements <= pivot in the
left_arr and the rest in right_arr, maintaining the order of the elements,
then recursively build trees for left_arr and right_arr
"""
pivot
=
(
root
.
minn
+
root
.
maxx
)
//
2
left_arr
:
list
[
int
]
=
[]
right_arr
:
list
[
int
]
=
[]
for
index
,
num
in
enumerate
(
arr
):
if
num
<=
pivot
:
left_arr
.
append
(
num
)
else
:
right_arr
.
append
(
num
)
root
.
map_left
[
index
]
=
len
(
left_arr
)
root
.
left
=
build_tree
(
left_arr
)
root
.
right
=
build_tree
(
right_arr
)
return
root
def
rank_till_index
(
node
:
Node
|
None
,
num
:
int
,
index
:
int
)
->
int
:
"""
Returns the number of occurrences of num in interval [0, index] in the list
>>> root = build_tree(test_array)
>>> rank_till_index(root, 6, 6)
1
>>> rank_till_index(root, 2, 0)
1
>>> rank_till_index(root, 1, 10)
2
>>> rank_till_index(root, 17, 7)
0
>>> rank_till_index(root, 0, 9)
1
"""
if
index
<
0
or
node
is
None
:
return
0
# Leaf node cases
if
node
.
minn
==
node
.
maxx
:
return
index
+
1
if
node
.
minn
==
num
else
0
pivot
=
(
node
.
minn
+
node
.
maxx
)
//
2
if
num
<=
pivot
:
# go the left subtree and map index to the left subtree
return
rank_till_index
(
node
.
left
,
num
,
node
.
map_left
[
index
]
-
1
)
else
:
# go to the right subtree and map index to the right subtree
return
rank_till_index
(
node
.
right
,
num
,
index
-
node
.
map_left
[
index
])
def
rank
(
node
:
Node
|
None
,
num
:
int
,
start
:
int
,
end
:
int
)
->
int
:
"""
Returns the number of occurrences of num in interval [start, end] in the list
>>> root = build_tree(test_array)
>>> rank(root, 6, 3, 13)
2
>>> rank(root, 2, 0, 19)
4
>>> rank(root, 9, 2 ,2)
0
>>> rank(root, 0, 5, 10)
2
"""
if
start
>
end
:
return
0
rank_till_end
=
rank_till_index
(
node
,
num
,
end
)
rank_before_start
=
rank_till_index
(
node
,
num
,
start
-
1
)
return
rank_till_end
-
rank_before_start
def
quantile
(
node
:
Node
|
None
,
index
:
int
,
start
:
int
,
end
:
int
)
->
int
:
"""
Returns the index'th smallest element in interval [start, end] in the list
index is 0-indexed
>>> root = build_tree(test_array)
>>> quantile(root, 2, 2, 5)
5
>>> quantile(root, 5, 2, 13)
4
>>> quantile(root, 0, 6, 6)
8
>>> quantile(root, 4, 2, 5)
-1
"""
if
index
>
(
end
-
start
)
or
start
>
end
or
node
is
None
:
return
-
1
# Leaf node case
if
node
.
minn
==
node
.
maxx
:
return
node
.
minn
# Number of elements in the left subtree in interval [start, end]
num_elements_in_left_tree
=
node
.
map_left
[
end
]
-
(
node
.
map_left
[
start
-
1
]
if
start
else
0
)
if
num_elements_in_left_tree
>
index
:
return
quantile
(
node
.
left
,
index
,
(
node
.
map_left
[
start
-
1
]
if
start
else
0
),
node
.
map_left
[
end
]
-
1
,
)
else
:
return
quantile
(
node
.
right
,
index
-
num_elements_in_left_tree
,
start
-
(
node
.
map_left
[
start
-
1
]
if
start
else
0
),
end
-
node
.
map_left
[
end
],
)
def
range_counting
(
node
:
Node
|
None
,
start
:
int
,
end
:
int
,
start_num
:
int
,
end_num
:
int
)
->
int
:
"""
Returns the number of elements in range [start_num, end_num]
in interval [start, end] in the list
>>> root = build_tree(test_array)
>>> range_counting(root, 1, 10, 3, 7)
3
>>> range_counting(root, 2, 2, 1, 4)
1
>>> range_counting(root, 0, 19, 0, 100)
20
>>> range_counting(root, 1, 0, 1, 100)
0
>>> range_counting(root, 0, 17, 100, 1)
0
"""
if
(
start
>
end
or
node
is
None
or
start_num
>
end_num
or
node
.
minn
>
end_num
or
node
.
maxx
<
start_num
):
return
0
if
start_num
<=
node
.
minn
and
node
.
maxx
<=
end_num
:
return
end
-
start
+
1
left
=
range_counting
(
node
.
left
,
(
node
.
map_left
[
start
-
1
]
if
start
else
0
),
node
.
map_left
[
end
]
-
1
,
start_num
,
end_num
,
)
right
=
range_counting
(
node
.
right
,
start
-
(
node
.
map_left
[
start
-
1
]
if
start
else
0
),
end
-
node
.
map_left
[
end
],
start_num
,
end_num
,
)
return
left
+
right
if
__name__
==
"__main__"
:
import
doctest
doctest
.
testmod
()
You can’t perform that action at this time.