forked from ledbutter/CSharpFingerTree
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
11 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,15 @@ | ||
# CSharpFingerTree | ||
<img src="https://ci.appveyor.com/api/projects/status/github/ledbutter/csharpfingertree?branch=master" alt="AppVeyor Status"/> | ||
<img src="https://ci.appveyor.com/api/projects/status/github/smalgin/csharpfingertree?branch=master" alt="AppVeyor Status"/> | ||
|
||
C# Implementation of Finger Tree | ||
C# Implementation of Finger Tree. | ||
|
||
Based on the work of Dimitre Novatchev [here](https://dnovatchev.wordpress.com/2008/07/20/the-swiss-army-knife-of-data-structures-in-c/) which in turn is based on this [research paper](http://www.staff.city.ac.uk/~ross/papers/FingerTree.html). | ||
|
||
Planned changes: | ||
|
||
1. Update .Net version to 4.6.1 DONE | ||
2. Add project for unit tests DONE | ||
3. Cover existing code with unit tests TODO | ||
4. Switch unit tests to NUnit | ||
5. Add implementation for Interval Tree based on the paper by Ralph Hinze mentioned above. | ||
6. Add implementation for the Quad Tree based on paper http://sarielhp.org/teach/2004/a_aprx/lec/03_quadtree.pdf |