Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/masbicudo/data-structures-net
Data structures that I use in my .Net projects.
https://github.com/masbicudo/data-structures-net
Last synced: 3 days ago
JSON representation
Data structures that I use in my .Net projects.
- Host: GitHub
- URL: https://github.com/masbicudo/data-structures-net
- Owner: masbicudo
- License: mit
- Created: 2014-05-31T19:22:29.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-02-19T05:00:22.000Z (almost 10 years ago)
- Last Synced: 2025-01-04T19:35:28.497Z (14 days ago)
- Language: C#
- Size: 574 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
data-structures-net
===================Data structures that I use in my .Net projects.
**Immutable tree and Continuous set.**
Immutable tree
--------------Immutable structures cannot be changed after they are created,
you must replace the entire thing when changes must be made.
Good for multi-threading, functional programming, few-writes/many-reads approaches.
Tree builders are available (e.g. convert flat data to tree, e.g. DB table).
Uses tree visitors to change tree.Continuous set
--------------Continuous set is a set that is not discrete. It's better explained with an example:
a set with all values between 1.1 (inclusive) and 2.7 (exclusive).
Can have multiple sequences, actually can represent a set of any type
for which an IComparable can be implemented (Double, String, DateTime, Int32).
Set operations available (e.g. union, exclusion, intersection)