Skip to content

Latest commit

 

History

History
13 lines (7 loc) · 340 Bytes

README.md

File metadata and controls

13 lines (7 loc) · 340 Bytes

Segment Tree Visualizer

Link To View:https://spiffy-salamander-54c78d.netlify.app/

Here I try to visualize segmant tree building operation with its differnt usages (Minimum, Maximum in range, Sum, multiply, Xor range)

Segmant Tree Pros:

-Editing tree is O(log N)

-Building tree is O(NlogN)

-Get query is O(logN)