-
Notifications
You must be signed in to change notification settings - Fork 271
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Interval Tree #326
Comments
I want to try this. |
Sure. Please read, https://github.com/codezonediitj/pydatastructs/wiki/Plan-of-Action-for-Adding-New-Data-Structures before starting to work on Interval trees. |
I am GSSoC'21 participant and I want to contribute to this issue. |
Hello, I would like to contribute to your project..since I have already made a C++(my custom made) Order Statistic tree...with fast times..so can also add interval trees..to it..for Python.. You can have a look in my templates section of my repository.. Have other various templates..which I have made in C++..can do them Python and contribute..to you..could you please assign me the task? |
Please feel free to work on this issue. |
Description of the problem
In computer science, an interval tree is a tree data structure to hold intervals. Specifically, it allows one to efficiently find all intervals that overlap with any given interval or point. It is often used for windowing queries,
Example of the problem
References/Other comments
https://en.wikipedia.org/wiki/Interval_tree
The text was updated successfully, but these errors were encountered: