mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-02-04 05:44:35 +00:00
[FEATURE] Segment tree #49
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @vakhokoto on GitHub (Jul 7, 2020).
I can't find segment tree implementation on the repository so I will write that.
Detailed Description
You can find detailed description on those links:
English: https://www.geeksforgeeks.org/segment-tree-set-1-sum-of-given-range/
Russian: https://e-maxx.ru/algo/segment_tree
Context
Context in which this data structure can be used is when answers on huge query segment is needed and also this segment need to be updated.
Possible Implementation